There is a bug in my SQL program,video score game .I can't able to squash it | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

There is a bug in my SQL program,video score game .I can't able to squash it

11th Dec 2022, 1:26 PM
Vinon Mani
Vinon Mani - avatar
2 Respostas
+ 7
SoloProg , it is not seen as a helpful behavior when we are going to post a code, as long as the op has not shown his attempt here. it is helpful to give hints and tips, so that the op has a chance to find a solution by himself.
11th Dec 2022, 3:33 PM
Lothar
Lothar - avatar
+ 1
CREATE TABLE leaderboard ( place INT, nickname VARCHAR, rating INT); INSERT INTO leaderboard (place, nickname, rating) VALUES (1, 'Predator', 9500), (2, 'JohnWar', 9300), (3, 'NightWarrior', 8900); SELECT * FROM leaderboard;
11th Dec 2022, 1:31 PM
SoloProg
SoloProg - avatar