如何用SQL查找30天内过生日的人?

select * from employee where birthday between getdate() and dateadd(day,30, getdate()) =================================== CREATE TABLE test_birthday (   id INT IDENTITY(1,1) PRIMARY KEY,   birthday  
相关文章
相关标签/搜索