Pertanyaan yang diberi tag postgresql

8
Cara membuat indeks pada ekspresi CASE di Postgres

Saya mencoba membuat indeks pada ekspresi CASE, sebagai berikut CREATE TABLE test(i INT, j INT); CREATE UNIQUE INDEX test_index ON test(CASE WHEN i=1 THEN j END); Mendapat kesalahan ini: ERROR: syntax error at or near "CASE" LINE 1: CREATE UNIQUE INDEX test_index ON test(CASE WHEN i=1 THEN j...