예시

CREATE TABLE TBL_A (

    id    int  ,
    value float
);

CREATE INDEX ON TBL_A(id, value) WHERE id > 4;

설명