postgresql 正则暗坑

前端之家收集整理的这篇文章主要介绍了postgresql 正则暗坑前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
 --注意pg的正则使用不正会有隐患
 postgres=# select * from t;
 id | name 
----+------
  1 | bill
  1 | bill
  1 | bill
(3 rows)
--注意,由于没有匹配正则,其执行了过滤操作(其是在select字段中,不细看还以为t表中没有数据呐)
postgres=# select t.*,regexp_matches(t.name,'rudy','i') from t;
 id | name | regexp_matches 
----+------+----------------
(0 rows)
原文链接:https://www.f2er.com/postgresql/194631.html

猜你在找的Postgre SQL相关文章