oracle基础

2019-04-15  本文已影响0人  Vic_is_new_Here

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'),'%');

     以上有三种写法等效。

上一篇下一篇

猜你喜欢

热点阅读