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%‘;
相关推荐
WanKaShing 2020-11-12
zhbvictor 2020-10-29
kls00 2020-10-15
89921334 2020-07-29
83911930 2020-07-28
89407707 2020-06-27
89921334 2020-06-26
89244553 2020-06-21
84593973 2020-06-21
83911930 2020-06-16
yaoding 2020-06-14
89244553 2020-06-11
89407707 2020-06-11
89921334 2020-06-10
89407707 2020-06-10
goodriver 2020-06-09
kevinli 2020-06-06
84593973 2020-06-05