My Code:
SELECT first_name, last_name
FROM customer -- Second comment
LIMIT 7;
/*
This comment
spans over
multiple lines.
*/
SELECT *
FROM employee
LIMIT 5;
What I expected to happen:
Score 100%
What actually happened:
Score 0%
Replace this line with the output/error
I am learning Fundamentals of SQL I. On skills using line comments and block comments, I am getting a 0% score. Overall my mastery is 5/5 but the line and block comments skills are not checked off on the Skills Mastery green bullet points. There are no syntax errors. Iām not sure what I am doing wrong.