0
INSERT INTO Animals(name,type,country_id) VALUES('Slim', 'Giraffe', 1) SELECT Animals.name, Animals.type, Animals.country_id,
Someone can help me
2 ответов
+ 2
What you want?
If you have the 'Animals' table with columns of the 'name,type,country_id',
This code insert these values to it:
('Slim', 'Giraffe', 1)
And then shows the new row by the bellows code:
SELECT Animals.name, Animals.type, Animals.country_id,
0
It's a challenge for me in order to get SQL certification