Si vos tableaux sont très similaires, vous pouvez le faire
Dans mon cas j'ai une table test_a avec 2 colonnes id et name
(SELECT * FROM test_a a1)
UNION ALL
(SELECT * FROM test_a a2)
ORDER BY name DESC
Si vos tableaux sont très similaires, vous pouvez le faire
Dans mon cas j'ai une table test_a avec 2 colonnes id et name
(SELECT * FROM test_a a1)
UNION ALL
(SELECT * FROM test_a a2)
ORDER BY name DESC