I have an sqlite table with Date of Birth.I would like to write a query to select those records where the age is more then 30 . I have tried following but it doesnot work.
select * from mytable where dob > '1/Jan/1980'
select * from mytable where dob > '1980-01-01'