Write a SQL query to display all the divnos in Member table but not in the Division table.
Table : Member
Table : Division
SELECT m.Divno FROM Member m LEFT JOIN Division d ON m.Divno = d.Divno WHERE d.Divno IS NULL;
+-------+ | Divno | +-------+ | 50 | +-------+