1. 函数concat: 连接字符串
SELECT * from table t where t.col1 like '%a%';
SELECT * from table t where t.col1 like '%' || 'a' || '%';
SELECT * from table t where t.col1 like concat(concat('%','a'),'%');
以上有三种写法等效。
1. 函数concat: 连接字符串
SELECT * from table t where t.col1 like '%a%';
SELECT * from table t where t.col1 like '%' || 'a' || '%';
SELECT * from table t where t.col1 like concat(concat('%','a'),'%');
以上有三种写法等效。
本文标题:oracle基础
本文链接:https://www.haomeiwen.com/subject/lxxmwqtx.html
网友评论