What's wrong with this query?
SELECT * FROM table ORDER_BY updated_at LIMIT 10;

...

ORDER_BY should be ORDER BY - wtf SQL why

1
Share
Share on Mastodon
Share on Twitter
Share on Facebook
Share on Linkedin
Paul

Now I want to order by ascending ok: ORDER BY ASC great

Now let's order by descending because as always I mix them up

ORDER BY DSC

ERROR: syntax error at or near "DSC"

kill me now

it's DESC btw

0
1y
Replies