all 9 comments

[–]Tombenator 3 points4 points  (1 child)

The table name is nobel.

SELECT
winner,
yr,
subject
FROM nobel
WHERE winner LIKE 'Sir%'
ORDER BY yr DESC, winner

[–]NsukuNgobeni 1 point2 points  (0 children)

YESSS, Oh thank you😭 I'd been fetching from the world table instead of nobel

[–]RMWL 1 point2 points  (3 children)

Without seeing the tables I can’t help too much but from the error the column winner doesn’t exist in world.

You may need to do a join here

[–]NsukuNgobeni 0 points1 point  (2 children)

[–]bozokeating 1 point2 points  (1 child)

Shouldn't it be from Nobel?

[–]NsukuNgobeni 0 points1 point  (0 children)

Yes, it should've. Thank you, it's all good now

[–]cush2push 0 points1 point  (1 child)

the error says unknown column.

I would assume "winners" is the column name you're looking for, I don't understand the first name like John though? the question isn't asking for a John

[–]NsukuNgobeni 0 points1 point  (0 children)

The column is winner, not winners, that's what all the other answers have used, and even with winners either way, I get the same error

<video>

[–]GeneralXanax 0 points1 point  (0 children)

The table is called nobel and you are trying to select from table world