错误: 操作符不存在: character varying == unknown , Hint: 没有匹配指定名称和参数类型的操作符. 您也许需要增加明确的类型转换.
在Mybatis条件查询时,动态SQL的一个错误,sql写的也不多,没仔细看所以一直找不到错误,网上也找不到类似的错误,结果是低级错误。。。
<from:options items="${fns:getDictList('fin')}" itemLabel="label"
itemValue=”value” htmlEscape=”false”/>
下面的动态sql查询是根据前台字典传过来的值 0或1或” ,来判断d_sign的值进行数据过滤查询,默认传过来”(空字符串)则均不进下面的判断条件里,是0 或 1 才进去。
①
AND (b.d_sign is null or b.d_sign=”)
②
AND (b.d_sign is not null AND b.d_sign!=”)
我把上面①里面的 b.d_sign=” 写成了b.d_sign==”,从而报了上面的错误。
另外把自己用到的一些postgresql中的sql语句做个整理:
我的postgresql数据库版本
1select version(); //查询版本语句
PostgreSQL 9.5.22, compiled by Visual C++ build 1800, 64-bit
修改表名
1alter table table_name rename to table_name2;
修改字段的默认值
1ALTER TABLE 表名 ALTER COLUMN 列名 SET DEFAULT 默认值;
设置某个字段的值为null
正确示范:
1update table_name set fin=null; //正常完成修改操作
错误示范:
1update table_name set fin is null; // 报语法错误!!!
修改表中值为null的数据
正确示范:
1update table_name set fin=’0′ where fin is null ; //正常完成修改操作
错误示范:
1update table_name set fin=’0′ where fin = null ; //不报语法错误,但修改条数是0,不起修改作用
修改字段的类型
1alter table 表名 alter COLUMN 列名 type varchar(255) ;
添加字段
1ALTER TABLE 表名 ADD 字段名 varchar(36);
其他测试:
//表中总共的记录数
select count(1) from table_name 32
select count(1) from table_name where d_sign is null 9 //32=9+23
select count(1) from table_name where d_sign is not null 23 //23=5+18
select count(1) from table_name where d_sign= ” 5
select count(1) from table_name where d_sign!=” 18
select count(1) from table_name where d_sign is null or d_sign=” 14 //32=14+18
select count(1) from table_name where d_sign is not null AND d_sign!=” 18
文章来源:脚本之家
来源地址:https://www.jb51.net/article/204295.htm
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:SEO优化专员,转转请注明出处:https://www.chuangxiangniao.com/p/891890.html