Ini adalah UNION
alternatif sintaks dengan akhir ORDER BY
.
Seperti inilah gabungan antara dua pilihan:
(SELECT ...)
UNION
(SELECT ...) ORDER BY ... LIMIT ...
Dan inilah persatuan antara satu pilih terlihat seperti:
(SELECT ...) ORDER BY ... LIMIT ...
Tidak terkait dengan subkueri sama sekali.
Ini tidak didokumentasikan di MySQL, tetapi jelas dari tata bahasa :
top_level_select_init:
SELECT_SYM
{
Lex->sql_command= SQLCOM_SELECT;
}
select_init2
| '(' select_paren ')' union_opt
;
/* Need select_init2 for subselects. */
union_select_init:
SELECT_SYM select_init2
| '(' select_paren ')' union_opt
;
...
union_opt:
/* Empty */ { $$= 0; }
| union_list { $$= 1; }
| union_order_or_limit { $$= 1; }
;