我用了一个combo来选择查询条件,查询条件有按"工号","姓名","联系电话",一个
我用了一个combo来选择查询条件,查询条件有按"工号","姓名","联系电话",一个文本框来输入查询内容,请问这个代码要怎么写?
if combo.text="工号" then
sql="select * from 表 where 字段工号='"+text1.text+"'"
end if
if combo.text="姓名" then
sql="select * from 表 where 字段姓名='"+text1.text+"'"
end if
。。。。。。。。。