0
Zoo project of SQL
Am not able to insert any value of the table
10 Respuestas
+ 5
SoloProg ,
there are things that should be kept in mind:
sololearn is learning platform, where people are encouraged trying to solve exercises. it makes no sense to give ready-made solutions, since the asker has not posted his attempt here.
just copy, paste and use a given solution in this situation does not help the asker to improve his coding ability.
+ 2
Emerson Prado sorry
+ 1
I know
+ 1
Thank U
+ 1
SoloProg Pls stop giving finished code as answers. As I explained in the other answers, this defeats learning, which is the purpose of this app.
+ 1
INSERT INTO Animals(name,type,country_id)
VALUES ('Slim','Giraffe',1);
SELECT Animals.name,Animals.type,
countries.country FROM Animals
INNER JOIN countries ON
Animals.country_id = countries.id
ORDER BY country;
For zoo project of sql
0
Thank U ❤️
0
Very useful
- 3
https://code.sololearn.com/ckI6xLS7AfzH
-- Good Luck