We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create functional indexes
for example, a common way to do case-insensitive comparisons is to use the lower function:
SELECT * FROM test1 WHERE lower(col1) = 'value'; This query can use an index, if one has been defined on the result of the lower(column) operation:
CREATE INDEX test1_lower_col1_idx ON test1 (lower(col1));
Source: https://www.postgresql.org/docs/7.3/indexes-functional.html
The text was updated successfully, but these errors were encountered:
Link for postgres 16: https://www.postgresql.org/docs/16/indexes-expressional.html
Sorry, something went wrong.
No branches or pull requests
Motivation
Create functional indexes
Source: https://www.postgresql.org/docs/7.3/indexes-functional.html
Proposed Solutions
Additional Information
The text was updated successfully, but these errors were encountered: