Ignoring the limit clause in SQL
Passing null or all to the limit clause effectively ignores the limit clause.
-- both statements return all user emails
select email from users limit null;
select email from users limit all;
Tweet