我的查询条件是(a or b) and c
我试过不少种写法,多总是报格式不对的错误为什么?怎样才是正确的写法?
我试过下面几种写法:
一,table.filter:='(a'+' or '+'b)'+' and '+c
二,table.filter:=(a+' or '+b)+' and '+c
三。table.filter:=((a)+' or '+(b))+' and '+c
...