Forum Replies Created

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

  • RE: T-SQL SELECT - Need help returning distinct values

    If you're trying to list the titles by total number of installs regardless of version, you'll need GROUP BY and SUM() statements. Give this a try:

    SELECT Title

    FROM Table

    GROUP BY...

  • RE: Output Clause

    I'm something of a newby to the forums, but here's a suggestion:

    I haven't seen a way to join the inserted table in an OUTPUT clause (maybe I'm just missing it),...

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