Hi folks
I am having difficuly sussing out how to join while using a group by clause.
table one is a variable (@t)
constructed thus:
declare @t table
([id] int IDENTITY(1,1)
PRIMARY KEY CLUSTERED,
cid int)
I do some manipulations on it then I select a results list thus:
select Count(*)...