Dim wjfs As String = DataTables("收款单").SQLGetComboListString("_Id","收款日期 Is null") '未收款单号
output.show(wjfs) '不为空值
If wjfs <> "" Then
output.Show(DataTables("检测工单").SQLCompute("Coumt(*)","收id in ('" & wjfs.Replace("|","','") & "')")) '得不到数据
End If
"_Id" 是字符型,如有换 数值型 字段,是可以得到数据的
If wjfs <> "" Then
if wjfs > "" 这样行不行?
Coumt(*) count?
[此贴子已经被作者于2024/12/5 20:26:53编辑过]
【收id】也是字符型吗?如果两个表在同一个数据源
dim a as integer = DataTables("检测工单").SQLCompute("Count(收id)","收id in (select [_Id] from 收款单 where 收款日期 Is null) & "')")
output.Show(a)