You are writing a query that asks a database to retrieve data about the customer with identification number 244. The column name for customer identification numbers is customer_id. What is the correct SQL clause?

Correct
The correct WHERE clause syntax is WHERE customer_id = 244. WHERE is used to extract only those records that meet a specified criteria. customer_id = 244 tells the database to return only information about the customer whose ID is 244.