以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 日期列的大小比较 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=194065) |
-- 作者:newsun2k -- 发布时间:2024/11/7 11:19:00 -- 日期列的大小比较 想实现下面的功能: dr1 = datatables("表1").sqlfind("a =1")dr2 = datatables("表2").sqlfind("a =1") if dr1("日期") > dr2("日期") then dr1(“日期”) = dr2(“日期”) ‘dr1和dr2的日期都有可能是空值,比较的时候会出错。何解? |
-- 作者:有点蓝 -- 发布时间:2024/11/7 11:26:00 -- if dr1 isnot nothing andalso dr2 isnot nothing if dr1("日期") > dr2("日期") then dr1(“日期”) = dr2(“日期”)
|