Select from following answers:- Limit
- Top
- Offset
- Both a & c

- All Above
Both limit and offset clause is used as
Select * from tablename where status = 'AA' order by columnname asc|desc
Limit 10 Offset 20;
Note:- In Offset case,it will skip the row from 1 to 19 and return the record from 20th to 30th record.
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator