
Do you train Kung Fu?
Or know someone who does?
Then check out KungFuPeople.com
Mobile version of this pageSqueezebox + Pandora
Next:
Carbon XEmacs installed
Related blogs
PostgreSQL, MySQL or SQLiteAnti-spamming email harvesting
Optimized stylesheets
Adding a year in PostgreSQL
Creating a user for postgresql
More optimization of Peterbe.com - CSS sprites
Python optimization anecdote
The problem with CSS
To sub-select or not sub-select in PostgreSQL
Speed test between django_mongokit and postgresql_psycopg2
Sorting transform function in PostgreSQL
ALTER TABLE patch
Just Oracle and IBM?
List of casts in PostgreSQL
pg_class to check if table exists
Integer division in programming languages
Date formatting in python or in PostgreSQL
Are you a web developer? Then VisiBone is for you
Python regular expression tester
\B in Python regular expressions
Running simple SQL commands on the command line
Fastest way to uniqify a list in Python
\b in Python regular expressions
Regular Expressions in Javascript cheat sheet
Date formatting in Python or in PostgreSQL (part II)
Why bother with MySQL...
Related by category
Quick PostgreSQL optimization story
case insensitive string, regular expressions, ilike, like, sql code, postgresql, optimization
11th of March 2006
There are several ways to do case insensitive string matching in SQL. Here are two ways that I've tried and analyzed on a table that doesn't have any indices.
Option 1:
LOWER(u.first_name) = LOWER('Lazy') OR
LOWER(u.last_name) = LOWER('Lazy') OR
LOWER(u.first_name || u.last_name) = LOWER('Lazy')
)
Option 2:
u.first_name ILIKE 'Lazy' OR
u.last_name ILIKE 'Lazy' OR
u.first_name || u.last_name ILIKE 'Lazy'
)
A potentially third option is to make sure that the parameters sent to the SQL code is cooked, in this case we make the parameter into lower case before sent to the SQL code
Option 1b:
LOWER(u.first_name) = 'lazy' OR
LOWER(u.last_name) = 'lazy' OR
LOWER(u.first_name || u.last_name) = 'lazy'
)
Which one do you think is fastest?
The results are:
Option 1b: 2.0ms - 2.1ms (average 2.05ms)
Option 2: 1.7ms - 2.0ms (average 1.85ms)
Conclusion: the ILIKE operator method is the fastest. Not only is it faster, it also supports regular expressions.
I've always thought that the LIKE and ILIKE were sinfully slow (yet useful when time isn't an issue). I should perhaps redo these tests with an index on the first_name and last_name columns.


Save this page in del.icio.us
Try
CREATE INDEX u_first_name_index ON u (lower(first_name));
or a variation thereof.
(Ah, I just noticed you wrote "without any indices". You probably already know this, then. I'll post it anyway - for the search engines.)
You could also use a shadow column maintained by a trigger, but that's an evil solution, only to be used in almost never-met circumstances.