select distinct c1, c2 into #tmp_1 from t1select count(*) as cnt from #tmp_1drop table #tmp_1
With best regards.how to count number of rows?
well, try this...
select count(*)from <yourtable>
No comments:
Post a Comment