View Single Post
  #2 (permalink)  
Old 08-21-2006, 02:04 AM
Dimitar
 
Posts: n/a
Default SQL 92 answer. Re: how can i select the third row from table?

[sql]
select max(a) from t where a < (select max(a) from t where a < (select max(a) from t));
[/sql]
What will the above return if the table is less than 3 in cardinality?
Edit/Delete Message Reply With Quote