Dim a As Double = Val(DataTables("商务评审标准表").SQLCompute("sum(分值)","1=2"))
output.show(a)
但是Count方法又是没问题的!
Dim a As Double = DataTables("商务评审标准表").SQLCompute("Count(分值)","1=2"))
output.show(a)
在Compute方法里又是没问题的!
Dim i As Integer = DataTables("开标记录表").Compute("sum(开标ID)","1=2")
output.show(i)