0
Can some one help me in last project of sql (zoo)
10 Answers
+ 2
Its not hard show ur attempt?
0
How may we help?
0
Ineed the solution of the last project of sql its soo hard 😭
0
I've checked the question and I think it's not that hard. Consider reviewing the lessons, especially for this question, you can review keywords' usage that are mentioned under the yellow box.
0
did you find the solution ?
0
True it's very hard TwT I already reviewed the lessons and did lots of times but still I can't do it ;-;
0
I have tried all ways to solve but it shows error
0
INSERT INTO Animals (name, type, country_id)
VALUES(Slim,Giraffe,1);
SELECT name, type, Countries.country
FROM Animals, Countries INNER JOIN Animals
ON Animals.country_id=Countries.id;
0
This gave me a headache
I think this was right
INSERT INTO Animals
VALUES('Slim','Giraffe',1);
SELECT name, type, Countries.country
FROM Animals INNER JOIN Countries
ON Animals.country_id=Countries.id
ORDER BY country;
0
Any one help me my coding is correct but shows error that error is "table animal is Specified "