11.11. 索引與排序規則
CREATE TABLE test1c (
id integer,
content varchar COLLATE "x"
);
CREATE INDEX test1c_content_index ON test1c (content);SELECT * FROM test1c WHERE content > constant;SELECT * FROM test1c WHERE content > constant COLLATE "y";CREATE INDEX test1c_content_y_index ON test1c (content COLLATE "y");Last updated
Was this helpful?