sql | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

sql

I need to write a query to output the names of all of the films which were produced by Marvel Studios in 2010 or later, sorted by the 'name' column. My code: FROM films WHERE production = 'Marvel Studos' AND year >= 2010 ORDER BY name Result : the code isn't correct. I've tried many times. please help.

18th Aug 2022, 9:50 PM
Nazrin Mehdiyev
Nazrin Mehdiyev - avatar
3 Answers
+ 1
You have a typo in the string. It's 'Marvel Studios' not 'Marvel Studos'.
18th Aug 2022, 9:53 PM
Justice
Justice - avatar
+ 1
No problem! Happens to me all the time! 👍🏾
18th Aug 2022, 10:16 PM
Justice
Justice - avatar
0
:-D thanks
18th Aug 2022, 10:09 PM
Nazrin Mehdiyev
Nazrin Mehdiyev - avatar