oracle 中的通配符

% 与_ 替代一个或多个字符
注意
select * from v where vname LIKE '_BCE%'

select * from v where vname LIKE '\_BCE%'
的区别

你可能感兴趣的:(oracle 中的通配符)