If I, for example, have a real simple query:
SELECT 1
UNION ALL
SELECT 2
and then fetch rows via Perl or PHP – would I have “1” as a FIRST row, and “2” as a SECOND? Is this behaviour described anywhere?..
Thanx
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s no default order, not in tables and not in queries, unless you specify an explicit order with ORDER BY.
You would probably have 1 as first row, and 2 as second, but it’s not default behaviour and it’s not described anywhere. It’s just coincidence!