美文网首页
oracle基础

oracle基础

作者: Vic_is_new_Here | 来源:发表于2019-04-15 22:46 被阅读0次

    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