I am learning SQL from sololearn while doing one of assignments I write query which is not accepted by sololearn | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I am learning SQL from sololearn while doing one of assignments I write query which is not accepted by sololearn

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 And this is my query but sololearn is not accepting it and showing same error that column Marvel studios doesn't exist SELECT name FROM films WHERE production = "Marvel Studios" AND year >= 2010 ORDER BY name;

4th Mar 2023, 11:00 AM
Nitin Bisht
Nitin Bisht - avatar
4 Answers
+ 8
Nitin Bisht , you also have to use *single quotes* , not *double quotes*
4th Mar 2023, 11:40 AM
Lothar
Lothar - avatar
+ 7
Nitin Bisht , it is requested to output only the *names* of the films, your statement uses '*'.
4th Mar 2023, 11:35 AM
Lothar
Lothar - avatar
+ 1
I changed but still it's showing error column 'Marvel Studios' does not exist Lothar
4th Mar 2023, 11:38 AM
Nitin Bisht
Nitin Bisht - avatar
+ 1
Yes now it's working, I never thought that by using single qoutes or double qoutes would effect my outcome Lothar
4th Mar 2023, 11:43 AM
Nitin Bisht
Nitin Bisht - avatar