Online Course Support | Prepare Data for Exploration

Scenario 2 continued Next, your interviewer wants to better understand your knowledge of basic SQL commands. He asks: How would you write a query that retrieves only data about people who work in Boise from the Clients table in our database?

 

 
 
Correct

To write a query that retrieves only data about people who work in Boise from the Clients table, type SELECT * FROM Clients WHERE work_location-’Boise’’.

Similar Posts