I am using the query:
select *
from time
where date = '2018-03-10'
limit 0,5;
Which I expect to return output from the 1st row, but it skips the first row of data and show result from 2nd row.
I also try
select * from time where date='2018-03-10' order by date limit 5 offset 0;
Everytime i call it offset increased by 5 but the result skip the data ...it donot show me data where name =sss and www...but show the remaining data why???