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