Viewing 3 posts - 1 through 3 (of 3 total)
I know but there is already SQL 2012 out. It is good exercise but 2000/2003 has it's age and most of clients already moved. But I understand your point.
May 3, 2012 at 1:15 am
#1482830
Why not simply use hierarchyid if it's T-SQL ?
May 3, 2012 at 12:56 am
#1482823
Here is the code for COUNT:
select @pocet=COUNT(i.id)
from vwShowInzeraty i
left join vwShowMotorizacia m on i.id_motorizacia = m.id
inner join vwShowKategorie k on i.id_kategoria = k.id
where
(@id is null or i.id...
April 22, 2011 at 12:08 am
#1314789