What is wrong in the SQL query below? SELECT S.OrderId, C.FirstName, C. LastName INNER JOIN Customer ON S. CustomerId C. CustomerId; FROM Sales The INNER JOIN syntax is incorrect. The alias for the tables are missing. Nothing is wrong in the query. The columns are not in the right order.