up vote 23 down vote favorite
11
share [g+] share [fb]

I'm running a MySQL database locally for development, but deploying to Heroku which uses Postgres. Heroku handles almost everything, but my case-insensitive Like statements become case sensitive. I could use iLike statements, but my local MySQL database can't handle that.

What is the best way to write a case insensitive query that is compatible with both MySQL and Postgres? Or do I need to write separate Like and iLike statements depending on the DB my app is talking to?

link|improve this question
feedback

7 Answers

up vote 24 down vote accepted
select * from foo where upper(bar) = upper(?);

If you set the parameter to upper case in the caller, you can avoid the second function call.

link|improve this answer
9  
You can also make sure it's upper: WHERE UPPER(bar) = UPPER(?) – Bill Karwin Oct 15 '08 at 2:25
I'm not 100% sure, but my recollection is that this will not use any indexes that may be present on foo because it can't scan a function's return value against the index. – Richo Oct 17 '11 at 0:35
1  
@Richo: But you can create an index in upper(bar) if you need it: postgresql.org/docs/current/interactive/sql-createindex.html – mu is too short Oct 17 '11 at 1:00
feedback

The moral of this story is: Don't use a different software stack for development and production. Never.

You'll just end up with bugs which you can't reproduce in dev; your testing will be worthless. Just don't do it.

Using a different database engine is out of the question - there will be FAR more cases where it behaves differently than just LIKE (also, have you checked the collations in use by the databases? Are they identical in EVERY CASE? If not, you can forget ORDER BY on varchar columns working the same)

link|improve this answer
2  
+1 for the moral boost, thanks. Seriously, though, this is right and a lot better than any of the "just answer the question" answers. Though I hate these moral of the story answers in general, but in this case it's well done. – Yar Jan 21 '10 at 1:05
The whole point of AR/AM is to allow you to use different database back ends in development and production. In my opinion, the failing here is in how the queries are generated by AR/AM. – Christopher Maujean Sep 3 '11 at 23:32
@christopher Maujean: see joelonsoftware.com/articles/LeakyAbstractions.html for why this is a bad idea. – MarkR Sep 4 '11 at 20:32
@MarkR: That article says (to me) not that abstraction is a bad idea, but that because abstraction is inherently leaky, I should know how to use the things being abstracted first and how the abstraction itself does the abstracting. In the case of Rails, I should know how SQL differs between MySQL, SQLite, and Postgres (the 3 SQL based database backends that I use) and how AR/AM performs the abstraction, so that I can recognize potential leaks and competently deal with them. – Christopher Maujean Sep 8 '11 at 18:13
I deploy on Heroku and installed PostgreSQL locally. It wasn't that hard... – B Seven Nov 9 '11 at 17:55
show 3 more comments
feedback

In postgres, you can do this:

SELECT whatever FROM mytable WHERE something ILIKE 'match this';

I'm not sure if there is an equivalent for MySQL but you can always do this which is a bit ugly but should work in both MySQL and postgres:

SELECT whatever FROM mytable WHERE UPPER(something) = UPPER('match this');
link|improve this answer
feedback

If you're using PostgreSQL 8.4 you can use the citext module to create case insensitive text fields.

link|improve this answer
Or add a functional index: postgresql.org/docs/7.3/static/indexes-functional.html – troelskn Jul 31 '10 at 16:51
feedback

You might also consider checking out the searchlogic plugin, which does the LIKE/ILIKE switch for you.

link|improve this answer
feedback

You can also use ~* in postgres if you want to match a substring within a block. ~ matches case-sensitive substring, ~* case insensitive substring. Its a slow operation, but might I find it useful for searches.

Select * from table where column ~* 'UnEvEn TeXt';
Select * from table where column ~ 'Uneven text';

Both would hit on "Some Uneven text here" Only the former would hit on "Some UNEVEN TEXT here"

link|improve this answer
feedback

Converting to upper is best as it covers compatible syntax for the 3 most-used Rails database backends. PostgreSQL, MySQL and SQLite all support this syntax. It has the (minor) drawback that you have to uppercase your search string in your application or in your conditions string, making it a bit uglier, but I think the compatibility you gain makes it worthwile.

Both MySQL and SQLite3 have a case-insensitive LIKE operator. Only PostgreSQL has a case-sensitive LIKE operator and a PostgreSQL-specific (per the manual) ILIKE operator for case-insensitive searches. You might specify ILIKE insead of LIKE in your conditions on the Rails application, but be aware that the application will cease to work under MySQL or SQLite.

A third option might be to check which database engine you're using and modify the search string accordingly. This might be better done by hacking into / monkeypatching ActiveRecord's connection adapters and have the PostgreSQL adapter modify the query string to substitute "LIKE" for "ILIKE" prior to query execution. This solution is however the most convoluted and in light of easier ways like uppercasing both terms, I think this is not worh the effort (although you'd get plenty of brownie points for doing it this way).

link|improve this answer
I started working on a plugin to do something similar: github.com/myronmarston/case_insensitive_attributes This isn't used in production anywhere, so don't run off and use it in your app, but it's a start. – Myron Nov 17 '09 at 21:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.