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