求助
问题:
做一个查找页面时,表单里面有一个文本框,一个下拉列表
要求文本框中时输入信息,下拉列表选中一项 对一个表查找这个两条件的SQL语句要怎么写。
高手帮哈我
"select * from [table] where text='"&text&"' and selecttext='"&selectText&"'"
把table变成变量不就解决了吗?
如
Dim table
table=Request("TabelName")
"select * from "&table&" where text='"&text&"' and selecttext='"&selectText&"'"
说明白点啊,到底是对不同的表查询,还是对同一个表的不同字段查询!