Many time we require results from different tables or different queries. We try one after the other and list the result accordingly. There is a better way to do this by using UNION command or query. We can list records of two different tables by combining two sql queries to one.
SELECT name,age FROM football
UNION
SELECT name,age FROM baseball

Discussion
No comments for “UNion in SQL”