在MyBatis中对Postgresql
数据库的表数据进行update操作,报以下错误:
Caused by: org.postgresql.util.PSQLException: ERROR: column “data” is of type jsonb but expression is of type character varying
建议:You will need to rewrite or cast the expression.
Caused by: org.postgresql.util.PSQLException: ERROR: operator does not exist: uuid = character varying
建议:No operator matches the given name and argument types. You might need to add explicit type casts.
由于Postgresql
数据库的数据类型跟MySQL
不一致,导致惯性思维在MyBatis
数据库中写sql语句,导致报错。原因其实是同一个,就是接受的参数的数据类型和Postgresql
数据库的不一致。
我这里的uuid
和data
分别是uuid
类型和jsonb
类型,如下图:
然后MyBatis
中的sql如下:
场景就是这样。
在每个类型后面加上对应的类型转换,如uuid
类型和jsonb
,就在对应的参数后面加上::类型
这样的格式即可,如下:
至此,问题解决!
信息加载中,请等待
微信客服(速回)
微信客服(慢回)