在查询里就一个文本框想查询多个内容
我在一个表单上做个文本框,下面是表格,一个查询按钮,意思是查询的内容在临时表显示,学的一个代码只能查询一个,哪位老师能给指教,多加几个内容。如:性别,年龄,地址。谢谢if empty(thisform.text1.value)
wait windows '请填入姓名!'
thisform.text1.setfocus
else
Select * from 表2;
where 姓名 like alltrim(thisform.text1.value)+'%' ; into cursor 临时信息表
thisform.grid1.recordsource='临时信息表'
endif