Write a SQL query to display common divnos from both the tables.
Table : Member
Table : Division
SELECT Divno FROM Division NATURAL JOIN Member;
+-------+ | Divno | +-------+ | 10 | | 20 | +-------+