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.htmlCREATE 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