0
Why my code is not working ?
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. SELECT * FROM films WHERE production='Marvel Studios' and year>=2010 ORDER BY name;
1 Answer
0
Does this return nothing?



