My question to those who have completed SQL regarding that zoo challenge module project. Please share whoever has done that. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

My question to those who have completed SQL regarding that zoo challenge module project. Please share whoever has done that.

SQL query

13th Mar 2021, 6:39 AM
Farhan Hasin
3 Answers
+ 1
INSERT INTO Animals VALUES ('Slim','Giraffe',1); SELECT Name,Type,Country FROM Animals INNER JOIN Countries ON Animals.country_id=Countries.id ORDER BY country; This is working but the first letter of each record (except header) are not in uppercase why?? Need help 🥺
2nd May 2021, 6:40 AM
Farhan Hasin
+ 5
You're missing animals in your table names. select animals.name, animals.country, animals.type
13th Mar 2021, 4:19 PM
Simba
Simba - avatar
+ 2
insert into animals(name,type,country_id) values ("Slim","Giraffe",1); select name,type,country from animals inner join countries on animals.country_id=countries.id order by country; *This is the code I have tried but still so error please clear the bug
13th Mar 2021, 12:19 PM
Farhan Hasin