如图,我想以两个文本框中数值为查询条件,查询表中符合要求的数据,我写的查询代码如下:
select all from ThisForm.grd_111 where "往济南流量"=thisform.text1.value .and. "往泰安流量"=thisform.text2.value into ThisForm.grd_111
一直出错,求指教。
select * from thisform.grd_111 where ALLTRIM(往济南流量)=ALLTRIM(thisform.text1.value) .and. ALLTRIM(往泰安流量)=ALLTRIM(thisform.text2.value) into TABL aaa
这是代码,运行之后如图所示,这是什么情况?请问该如何解决?