6 lines
194 B
SQL
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 |