Write a SQL query to display all the divnos from both the tables.
Table : Member
Table : Division
SELECT DIVNO FROM MEMBER UNION ALL SELECT DIVNO FROM DIVISION;
+-------+ | DIVNO | +-------+ | 10 | | 20 | | 50 | | 10 | | 20 | | 30 | +-------+