标签:sel sql where 结果 sele rom bst char ike
以前写SQL时,知道MySQL多字段模糊查询可以使用[charlist] 通配符,如:
SELECT * FROM Persons
WHERE City LIKE ‘[ALN]%‘
但是在Oracle中使用这种方式进行查询时,却不能查询出结果
可以使用以下几种方式进行多字段模糊查询:
方法1:
select name from table1
where sdate = ‘2018/05/20‘
and substr(code,0,1) in (‘1‘,‘2‘,‘3‘)
方法2:
……
标签:sel sql where 结果 sele rom bst char ike
原文地址:https://www.cnblogs.com/biyuting/p/9125599.html