生日提醒如何用asp实现
我最近作了一个网站,有个生日提醒的功能,主要是不知道如何从数据库中查询同学的生日信息和当前的时间比较,我写了个查询但就是运行不了,有哪位大哥能帮帮忙?sqlstr="select * from class where
(datepart(m,getdate())<>12 and datediff(d,getdate(),dateadd(yyyy,datediff(yyyy,cust_age,getdate()),cust_age)) between 0 and 3)
or
(datepart(m,getdate())=12 and datediff(d,getdate(),dateadd(yyyy,datediff(yyyy,cust_age,getdate())+1,cust_age)) between 0 and 3)"
my_rs.open sqlstr,conn,1,3
if my_rs.bof and my_rs.eof then
response.Write("没有生日提醒信息,")
else
response.write("the people will have birthday today!")
..............................
这是我写的关于查询生日信息的代码,不知错在哪了,
class 是学生表
cust_age是学生表中的生日数据
有哪位大哥能帮帮忙?