如何在access中同时查询两个或两个以上的关键词
发布网友
发布时间:2022-04-22 23:47
我来回答
共3个回答
热心网友
时间:2023-10-08 22:40
select * from [Table]
where
content like '%a%' and content like '%b%'..........
如果有一个关键词就可以的话就把and换成or
热心网友
时间:2023-10-08 22:40
条件可以用逻辑运算符连接.
and or not
select 1 from biao where A=1 and A>10 (查找A=1并且A>10的)
select 1 from biao where A=1 or A>10 (查找A=1或者A>10的)
select 1 from biao where not A=1 (查找A不等于1的.)
热心网友
时间:2023-10-08 22:41
在对象选项里,用查询创建一个向导