0
I have a table in mysql but when using LIMIT and OFFSET I have an unwanted return, 1 data repeats to each search.
Look at the table:
then use the following command:
SELECT funcionario.nome
FROM funcionario
LIMIT 0, 2
after the second command:
SELECT *
FROM `funcionario`
LIMIT 1,2
how to do this type of query without repeating data ?