Hello all,
I have a select query which uses many lower() functions and due to which the performance and the execution speed of the query is real bad so I want to add an
additional column to hold a lowercase version. Say,my column name is "colname". The new column "lower_colname" . I should Set
up an insert-update trigger that sets lower_colname = lower(colname).
Then set up the index against "lower_coln ame" instead of "colname". Please help me out to achieve this.
I have a select query which uses many lower() functions and due to which the performance and the execution speed of the query is real bad so I want to add an
additional column to hold a lowercase version. Say,my column name is "colname". The new column "lower_colname" . I should Set
up an insert-update trigger that sets lower_colname = lower(colname).
Then set up the index against "lower_coln ame" instead of "colname". Please help me out to achieve this.
Comment