Hi
if myTable has a column like
Col
10
7
3
5
9
4
How can I select three smallest numbers?
my resultset should be
3
4
5
I don't prefer the following;
with myT as
(select col from myTable order by col)
select top(3) from myT
Any better idea?
thanks