《Visual FoxPro数据库基础教程实践与题解》适合作为高等院校本科、专科学生学习Visual FoxPro数据库课程的参考书,也可作为数据库编程人员和信息管理等相关领域的技术工作者自学与参考用书。
以下是日期的查询 简单的例子select * from View_Change where Wname='AAAA'
select * from View_Change where Updatetime>'2007-10-13'
下面是统计
select Wno,Count(Wnum) as 统计 from View_Change where Updatetime>'2007-10-13' group by Wno
如果改为复杂点点的统计的话
select Wno,Count(Wnum) as 统计 from View_Change where Updatetime>='2008-01-01' and Updatetime<'2009-01-01' and Wno=1 and Type='出库' group by Wno
ftp://220.184.188.33/ 里面的几个文档案就是创建的过程 我也好久没做过了 都忘记了 大部分都是企业管理器内做的
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)