I'm trying to get a count of people in a table below a certain age. Something like this
select count(*) as total from 'TABLE' where 'BIRTHDAY'> 19 years old ;
The field type is DATE for BIRTHDAY
I'm new to sql and I am just not sure how to write this properly.