VB编程中,我在做会员积分系统,有问题不会。。。。

2024-12-22 22:51:28
推荐回答(1个)
回答1:

dim year1,month1,day1
year1=year(date)
month1=month(date)
day1=day(date)
if month1<6 then
year1=year1-1
month1=month1+6
end if
如果是查询access数据库的话用
sql= "select * from 会员消费记录的表格名称 where 记录消费日期的列名<#"&year1&"-"&month1&"-"&day1&"#"
sql数据库的话
sql= "select * from 会员消费记录的表格名称 where 记录消费日期的列名<’"&year1&"-"&month1&"-"&day1&"‘"
然后执行语句就行了。至于放在哪里……你应该会吧