Hello everyone.
I started an SQL course in Coursera called SQL for Data Science and I have been stuck in some programing questions. I will really appreciate your feedback.
This is the exercise:
And this is the question:
Question 5: What is the pay type for all the job codes that start with '03'? The code has been started for you, but you will need to program the fourth and fifth lines yourself before running the query.
I wrote the following code, but a syntax error appears:
Select
Job_Code,
Pay_Type,
From salary_range_by_job_classification
WHERE Job_Code LIKE '03%'
near "From": syntax error
I will really appreciate your feedback.
Best regards.