delete from Sup_list_2011 where HDate='2011.04.01'
这句在ACCESS里提示标准表达式中格式不匹配
我检查了很多次 字段都没问题啊 也有2011.04.01这个字段值啊
望大大解答下 感激
hdate的类型是 日期/时间
以及解决
delete from Sup_list_2011 where cdate( HDate)='2011.04.01'
把字段暴力转成cdate
delete from Sup_list_2011 where HDate=cdate('2011.04.01')
HDate 的数据类型?
try:
delete from Sup_list_2011 where HDate='#2011.04.01#'
hdate的类型是 日期/时间
以及解决
delete from Sup_list_2011 where cdate( HDate)='2011.04.01'
把字段暴力转成cdate