How to select table using TOP. I have an sql and I just want to select only the top records. I can do it on sql server like "Select Top 1". Any help will be appreciated. Thanks, Rod Cortejo
How to select table using TOP. I have an sql and I just want to select only the top records. I can do it on sql server like "Select Top 1". Any help will be appreciated. Thanks, Rod Cortejo
Rod, Some database languages add their own features tat are not part of the ANSI standards. TOP is one such feature. DB2 tries to implement the ANSI standards and so TOP is not supported. What exactly is the result you are trying to achieve? Kevin