在PostgreSQL 9.3 Beta 2(?)中,如何在JSON字段上創建索引?我嘗試了使用用於hstore
的->
操作,但得到了以下錯誤:如何在PostgreSQL的json字段上創建索引9.3
CREATE TABLE publishers(id INT, info JSON);
CREATE INDEX ON publishers((info->'name'));
ERROR: data type json has no default operator class for access method "btree" HINT: You must specify an operator class for the index or define a default operator class for the data type.
- 在標題 – rlib
以後請看看http://stackoverflow.com/tags/postgresql/info,「提出更好的問題」部分;這可能有助於儘早得到更好的答案,減少煩人的問題。 –