How do I return all rows from a table except the first row. Here is my sql statement:
SELECT * FROM article where article_no
NOT IN
(SELECT * FROM article order by article_no limit 1)
The up given SQL query throws an error:
This version of MariaDB doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'