F.6. btree_gin
F.6.1. 使用範例
CREATE TABLE test (a int4);
-- create index
CREATE INDEX testidx ON test USING GIN (a);
-- query
SELECT * FROM test WHERE a < 10;F.6.2. 作者們
Last updated
Was this helpful?
CREATE TABLE test (a int4);
-- create index
CREATE INDEX testidx ON test USING GIN (a);
-- query
SELECT * FROM test WHERE a < 10;Last updated
Was this helpful?
Was this helpful?