Thread
:
List all results except the biggest?
View Single Post
#
2
(
permalink
)
05-23-2006, 11:58 PM
alexfr
Junior Member
Join Date: May 2006
Posts: 24
MySQL
answer.
Re: List all results except the biggest?
[sql]SELECT *
FROM orders
where id < (select MAX(id)
from orders)
ORDER BY id DESC[/sql]
alexfr
View Public Profile
Send a private message to alexfr
Find all posts by alexfr