The last SQL quiz | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

The last SQL quiz

insert into Animals(country_id, name, type) values(1, "Slim", "Giraffe"); select Animals.name, Animals.type, Countries.country from Animals, Countries where Animals.country_id = Countries.id order by Countries.id desc; How can I make it work? The error is NO SUCH COLUMN: SLIM

17th Mar 2022, 12:03 PM
GUMPERT
GUMPERT - avatar
0 Answers