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 SQL Basics Finding the Data You Want Filtering Out or Finding Missing Information

When using the wildcard (%) on the LIKE function, when is it appropriate to use 1 or 2 wildcards

When using the wildcard (%) on the LIKE function, when is it appropriate to use 1 or 2 wildcards

1 Answer

The LIKE operator is used with the WHERE clause to search for a specified pattern in a column. These patterns are created with Wildcards, whereby a Wildcard character is used to substitute one or more characters in a string.

The % Wildcard represents zero, one, or more characters.

For example:

-- find any values that start with "a" such as apple, apricot, accordion, abacus.

WHERE columnName LIKE 'a%';

-- find any values that end with "a" such as computerphobia, mozzarella.

WHERE columnName LIKE '%a';

-- find any values that have "are" in any position such as care, mozzarella, parenteral.

WHERE columnName LIKE '%are%';