我無法從表中選擇包含在類型框中列的查詢的pgsql 9.1訂購boxcolumn PostgreSQL中
create table test (t box);
CREATE TABLE
select * from test order by t;
ERROR: could not identify an ordering operator for type box
LINE 1: select * from test order by t;
^
TIP: Use an explicit ordering operator or modify the query.
我想通了,有一類的運營商(box_ops)應照顧排序和平等,甚至試圖爲列創建一個明確的索引。
create index testx on test using gist (t box_ops);
CREATE INDEX
但問題仍然存在。我錯過了什麼? 謝謝!
什麼結果,你想達到什麼目的?如果你成功了,你創建的桌子應該是什麼樣子? –
問題是關於排序框列是postgresql – alexdba