Hi,
I got kinda lost here....
I tried to use the following nested query on MySQL v 3.23.55:
SELECT id_paquete,nro_seq
FROM Paquete AS P
WHERE P.id_paquete >= ALL (SELECT id_paquete FROM Paquete)
and the answer was:
You have an error in your SQL syntax near 'ALL ( SELECT id_paquete FROM Paquete )
The query
SELECT id_paquete
FROM Paquete
works just fine.
The MySQL OnLine Manual (http://www.mysql.com/doc/en/ALL_subqueries.html) suggests it should work..
any clue?
thanks
Martin