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
0 Respuestas