sqlhou="select 厚度,sum(片数) from X卸板数据库 where 处理方式=1 and year(时间)="&nianfen&" group by 厚度"
明明有数据的,怎么提示没有呢?
sqlhou="select 厚度,sum(片数) from X卸板数据库 where 处理方式=1 and year(时间)="&nianfen&" and month(时间)=11 group by 厚度"
这样就有数据了。为什么?
sqlhou="select 厚度,sum(片数) from X卸板数据库 where 处理方式=1 and year(时间)="&nianfen&" group by 厚度"
明明有数据的,怎么提示没有呢?
sqlhou="select 厚度,sum(片数) from X卸板数据库 where 处理方式=1 and year(时间)="&nianfen&" and month(时间)=11 group by 厚度"
这样就有数据了。为什么?
我告诉你sum(片数) 如果你 的 片数这个字段中有 null 那么 sum 以后 就是null
你加上month(时间)=11 有结果
是应为符合 month(时间)=11 条件的数据中 没有 片数等于 null 的记录
你做断点跟踪,得到sqlhou变量的值,直接在查询分析器中试试看有没有数据
如果还是没有的话,贴出来看看