Quote:
|
Originally Posted by DBFinder
Hi ,
Can anyone tell me what is topsql.
Is topsql available in DB2.
If so how we run it.
Please help,
DBFinder
|
Are you talking about TOP SQL's which is basically
select top 3 * from tablename in SQL Server???
If that is the case then in DB2 it is
select * from tablename fetch first 3 rows only.