想实现下面的功能:
dr1 = datatables("表1").sqlfind("a =1")
dr2 = datatables("表2").sqlfind("a =1")
if dr1("日期") > dr2("日期") then dr1(“日期”) = dr2(“日期”)
‘dr1和dr2的日期都有可能是空值,比较的时候会出错。何解?
if dr1 isnot nothing andalso dr2 isnot nothing
if dr1("日期") > dr2("日期") then dr1(“日期”) = dr2(“日期”)