postgresql数据库-number类型模糊查询
Posted dongyaotou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgresql数据库-number类型模糊查询相关的知识,希望对你有一定的参考价值。
这两种方式都是可以的:
select * from aaa a where a.org_code ||‘‘ like ‘86%‘;--推荐使用这种,简单,一看就是高手写出来的
select * from aaa where 1=1 and cast(org_code as varchar(10)) like ‘%1%‘;
以上是关于postgresql数据库-number类型模糊查询的主要内容,如果未能解决你的问题,请参考以下文章
看大数据最大技术难关之模糊检索,PostgreSQL如何攻克
无需编程,基于PostgreSQL零代码生成CRUD增删改查RESTful API接口