我有一个sql server表,其中员工信息为stored.It,其中有道布列;现在,我希望找到所有出生在1月至3月的员工(例如,2014- 1月-02至2014-3月-02).Thanks。
发布于 2014-02-26 11:36:08
select * from tablename where Month(DOB) between 1 and 3
https://stackoverflow.com/questions/22039602
相似问题