You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
since the LIMIT keyword do not exist in sql server
you can use this syntaxe to solve the problem SELECT * FROM albums WHERE release_year = (SELECT MIN(release_year) FROM albums)
The text was updated successfully, but these errors were encountered:
since the LIMIT keyword do not exist in sql server
you can use this syntaxe to solve the problem
SELECT * FROM albums WHERE release_year = (SELECT MIN(release_year) FROM albums)
The text was updated successfully, but these errors were encountered: