In this post, I’ll show yo How to List students whose birth date is tomorrow in SQL table.
1 2 3 4 5 |
Select * from students where MONTH(birthdate) = MONTH(dateadd(dd,1,getdate())) and Day(birthdate) = Day(dateadd(dd,1,getdate())) |
Result: