vote up 0 vote down star

Hey!

I have a table with N rows, and I wanna select N-1 rows.

Suggestions on how to do this in one query, if it's possible..?

flag

2 Answers

vote up 3 vote down check

Does the last row have the highest ID? If so, I think this would work:

SELECT * FROM TABLE WHERE ID != (SELECT MAX(ID) FROM TABLE)

MySQL does allow subselects in the current version, right?

However, in most cases, it'd probably perform better if you selected all the rows and then filtered the unwanted data out in your application.

link|flag
MySQL 4.1 has supported subqueries for more than four years! Though admittedly some hosting companies still use MySQL 4.0 which lacks this feature. – Bill Karwin Nov 24 '08 at 22:17
Heh, I thought so. But the last time I used MySQL it was 3.X, and stuff like this didn't work. Mostly using MS SQL Server nowadays. – Joshua Carmody Nov 24 '08 at 22:40
vote up 1 vote down

SELECT DISTINCT t1.columns FROM table t1
INNER JOIN table t2 ON t1.id < t2.id

In my experience, MySQL loves this technique, going back several versions.

link|flag
Probably should be SELECT DISTINCT t1.columns ... – Bill Karwin Nov 24 '08 at 22:18
I'm sure you forgot a DISTINCT in there. – Jason Lepack Nov 24 '08 at 22:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.