Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Group by help needed

    decentflower,

    Try this:

    SELECT * FROM @tbl t JOIN

    (select sort,type, Max(price) AS price , name from @tbl group by sort,type,name) mmax

    ON t.sort = mmax.sort AND t.type = mmax.type AND t.name =...

  • RE: Sending multiple rows to the Database from an Application: Part I

    The table-valued function [dbo].[TableFormDelimetedStringWithoutNumberList] will choke on lists longer than 100 elements. Here's the error:

    Msg 530, Level 16, State 1, Line 1

    The statement terminated. The maximum recursion 100 has...

Viewing 2 posts - 1 through 2 (of 2 total)