Viewing 2 posts - 1 through 2 (of 2 total)
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...
July 14, 2011 at 8:24 pm
#1353152
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),...
July 20, 2010 at 4:07 pm
#1195851