I have a table and I want to start the select with the 20th row. How do I do this?
Does conditionals work on "limit"
following query will show 100 records and start from record no 20
select * from table1 a where mycol='mycondition' limit 20, 100
Thanks