请教一个问题》????????????????
数据库里有出生日期,有二个条件,首先,判断出男方年龄达到60岁,女方达到55岁月和现在时间比,第二,出生日期提前3个月,然后显示出符合这个月(本月)的人员名单 --------------------编程问答-------------------- 数据库字段都没给.....string cmd="select * from people where (易做图=0 and birthday<@y60) or (易做图=1 and birthday<@y55)";
string y60=DateTime.Now.AddYears(-60).ToShortDateString();
string y55=DateTime.Now.AddYears(-55).ToShortDateString();
//string y60=DateTime.Now.AddYears(-60).AddMonths(3).ToShortDateString();
//string y55=DateTime.Now.AddYears(-55).AddMonths(3).ToShortDateString();
提示给完... --------------------编程问答-------------------- 应该是-3
补充:.NET技术 , C#