Final answer:
The correct SELECT statement to return the customer ID, the company, and the total sales is SELECT c.cust_id, c.company, s.total_sales FROM customers c, sales s WHERE c.cust_id = s.cust_id;
Step-by-step explanation:
The correct SELECT statement to return the customer ID, the company, and the total sales is SELECT c.cust_id, c.company, s.total_sales
FROM customers c, sales s
WHERE c.cust_id = s.cust_id;
This statement selects the cust_id and company columns from the customers table, and the total_sales column from the sales table. It then uses the WHERE clause to join the two tables based on the cust_id column.
By using the table aliases c and s, we can specify which table each column belongs to in the SELECT statement.