如何解决运算符不存在
| 尝试在Spring-roo PostGres项目中创建实体时,出现以下错误:ERROR org.hibernate.util.JDBCExceptionReporter - ERROR: operator does not exist: integer ~~ unkNown
Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts.
Position: 433
有什么解决方案?
解决方法
类型未知通常在您拥有字符串文字且Postgres最终尝试确定它是否为varchar,文本,文字数组等时发生。
根据需要强制转换您的字符串,例如:
\'2\'::int
或者,如果适用,不要将其放在第一位。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。