I have a table that contains a birthday in the format (YYYYMMDD) eg '19951118'
What is the most efficient way to findout if the user has turned 18?
I add my solution in the post instead of a comment: SELECT * from Users where DATEADD(YEAR,18,BirthDay) > DATEADD(dd, DATEDIFF(dd, 0, getdate()), 0)