In a test at university there was a question; is it possible to use an aggregate function in the SQL WHERE clause.
SQL WHERE
I always thought this isn\'t possibl
UPDATED query:
select id from t where id < (select max(id) from t);
It'll select all but the last row from the table t.