版主您好:
还是上次的问题,非常感谢您的帮助,但不是我想要的结果,请您在帮我一次,比如:查询2005年001编号至2006年088编号的数据,删除2006年002编号至2007年091编号的数据,怎样编写代码?
数据库格式是这样的:
年份 编号 名称 数量 单价 金额
2005 001 芯片 100 0.8 80
2005 002 插头 100 0.8 80
'''''''
2007 001 平片 200 0.9 180
vbsoldier
学分:0 LV1
select * from table where (年份 between 2005 and 2006)or (年份=2007 and 编号<090)
delete * from table where (年份=2006 and 编号>001) or (年份=2007 and 编号<092)
vbsoldier
学分:0 LV1
select * from table where (年份 between 2005 and 2006)or (年份=2007 and 编号<089)
delete from table where (年份=2006 and 编号>001) or (年份=2007 and 编号<092)
上面错了