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 trialSeyit Tümtürk
2,163 PointsHow to use Where
Don't know how to use where in a query
1 Answer
chrisverra
3,760 Pointsyou use where to check if a value exists
example:
SELECT * FROM contacts WHERE last_name = 'Johnson';
so this looks in the database for all records inside the contacts table that have a last_name equal to Johnson
Seyit Tümtürk
2,163 PointsSeyit Tümtürk
2,163 PointsThanks.