In MySQL, I have data with the same id in the table. For example, I have 3 data with the id X
now whenever I query
SELECT * FROM table WHERE id = X ORDER BY id
It will return me all 3 data having an id X
Now I am looking for a solution to skip the first row from data which comes in the result.
I looked up in this answer and also LIMIT & OFFSET, but I did not get any proper solution. How can I skip the first row?