I have an sqlite table with Date of Birth. I would like to execute a query to select those records where the age is more than 30. I have tried the following but it doesn\'t
Using the magic docs at the sqlite website:
select * from mytable where dob < date('now','-30 years');