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"

Recommended Answers

All 2 Replies

following query will show 100 records and start from record no 20

select * from table1 a where mycol='mycondition' limit 20, 100

Thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.