标题: format(月,"00")在查询中或窗体使用用何不同? [打印本页] 作者: wen123456 时间: 2009-5-13 21:17 标题: format(月,"00")在查询中或窗体使用用何不同? format(月,"00")在查询中可以使用,而在窗体中不能使用作者: Grant 时间: 2009-5-13 23:44
窗体 format(月,'00') 试试看作者: Henry D. Sy 时间: 2009-5-14 00:19
format(月,'mm')作者: wen123456 时间: 2009-5-14 18:04
可能我没有说清,
select format(月,"00")&"-"&format(号,"000") as YY,年,月,日,号,摘要, 科目编码,总账科目,明细科目,round(借方金额,2) as 借方,round(贷方金额,2) as 贷方 from flb union all select format(月,"00")&"-9A" as YY, null, 月,null as 日,null as 号,'本月合计' as 摘要,left(科目编码,6),null as 总账科目, 明细科目,round(sum(借方金额),2),round(sum(贷方金额),2) from flb group by 月,left(科目编码,6), 明细科目 UNION ALL select format(月,"00")&"-9B" as YY,null as 年, 月,null as 日,null as 号,'本年累计' as 摘要,left(科目编码,6),null as 总账科目,明细科目,round(sum(借方金额),2),round(sum(贷方金额),2) from flb group by left(科目编码,6),明细科目,月;
在查旬中没有问题,但将此语句放在窗体的查询中就出错。
sql="以上语句"就出错作者: Grant 时间: 2009-5-14 20:09
不是告诉你了,让你把双引号换成单引号 "蛋蛋"='蛋蛋'作者: wen123456 时间: 2009-5-14 22:03
GranT,谢谢作者: changweiren 时间: 2009-5-14 23:30
原来如此