D
devuser
Unregistered / Unconfirmed
GUEST, unregistred user!
1。有很数据库不支持直接的时间相间,建议您用当前的系统日期减去30得到日期X
select *
from
where birthday > x;
2。系统日期减去30年。您应该首先把日期分解为year,month,day,
year := year - 30;
再把year,month,day合成为日期x
3。DecodeDate() //分解日期
EncodeDate() //合成日期
用到两个函数,这两个系统函数,帮助里面有。
select *
from
where birthday > x;
2。系统日期减去30年。您应该首先把日期分解为year,month,day,
year := year - 30;
再把year,month,day合成为日期x
3。DecodeDate() //分解日期
EncodeDate() //合成日期
用到两个函数,这两个系统函数,帮助里面有。