Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Databases Modifying Data with SQL Updating Data in a Database Review and Practice

SQL Playground says ILIKE is an error

SELECT * FROM movies WHERE title LIKE '%Starfighter%';

ā†’ A table, showing the results of the query as expected.

SELECT * FROM movies WHERE title ILIKE '%Starfighter%';

ā†’ Error: near "ILIKE": syntax error

ILIKE isn't in the SQL standard, that might be why. From what I googled, it's from the PostgreSQL extention, which i'm guessing isn't partof the SQL playground, so it thinks it's an error.

1 Answer

Steven Parker
Steven Parker
230,178 Points

Your first example (using LIKE) is correct standard SQL.

In SQLite (as used by the playground), string comparisons are case-insensitive by default. You can make it case-sensitive if needed with this statement:

PRAGMA case_sensitive_like=ON;