0
Output always column name.
Select name From films Where year >= 2010 And (production= âmarvel studiosâ) Order by name; Output always comes out with just the column name ânameâ. What am I doing wrong?
7 Respostas
0
Thanks for the prompt response! what I meant was I want the names in the column that follow that specific guidline, but the output is literally just ânameâ I want the actually names under the ânameâ column.
0
i have the same issue
0
Select name
From films
Where year >= 2010
And (production = âMarvel Studiosâ)
Order by name;
take note of the Character in 'Marvel Studio' herein lies your bug
0
Is somebody have code which will work?
- 1
This has been broken that long. Iâm getting the same thing even though i have the correct answer.
- 1
select name,year from films where production IN('Marvel Studios') and year >= 2010 order by year
- 3
You are only selecting the name column in your select clause. To select all columns do this:
SELECT * FROM .....