Files
2026-05-18 06:40:19 +00:00

6 lines
194 B
SQL

Partial index, means index will be created on a specific subset of data of a table.
edbstore=> create index part_emp_idx on orders(tax) where tax > 400;
CREATE INDEX
edbstore=> \d part_emp_idx