postgresql:could not identify an equality operator for type json

前端之家收集整理的这篇文章主要介绍了postgresql:could not identify an equality operator for type json前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

CREATE TABLE TEST(NAME JSON NULL);

SELECT DISTINCT NAME FROM TEST;

错误信息:could not identify an equality operator for type json

json字段不能使用distinct语法 原文链接:https://www.f2er.com/postgresql/194549.html

猜你在找的Postgre SQL相关文章