I have a sql table in a MySQL with the following records:
+------+----------+ | user | dob | +------+----------+ | john | 1/10/96 | | jane | 3/4/97 |
Try this:
DELETE FROM Users WHERE dob <= '1/1/00'