2
I have the HIGHLIGHT field (yes) (no) I would like to display the results by removing the first 4 results HIGHLIGHT (yes) and display the rest of the records both (yes) from the 4th and (no)
I tried to use LIMIT
OFFSET
but it didn’t work
SELECT * FROM noticias WHERE status='Publicado' ORDER BY idnoticia DESC LIMIT 6,4
some alternative?
Post what tried and didn’t work.
LIMIT OFFSET
is the most appropriate. Which bank is using? Also add an example, to make it clearer.– Vinícius Gobbo A. de Oliveira
You are using mysql?
– Guilherme Nascimento