0
Ошибка "Нет вводных данных"
Есть задача: 1) К вам прибыло новое животное: название - "Slim", тип - "Giraffe", country_id - 1 Добавьте его в таблицу Animals. 2) Вам необходимо сделать полный список животных для посетителей зоопарка. Напишите запрос для вывода в результат новой таблицы с указанием полей name, type и country по каждому животному и сортировкой по country. Решение: INSERT into Animals(name, type, country_id) VALUES('Slim','Girrafe',1); SELECT Animals.name, Animals.type, Countries.country FROM Animals INNER JOIN Countries on Countries.id = Animals.country_id ORDER by Countries.country; Выходит ошибка "Нет вводных данных". В чём проблема?
8 Réponses
+ 5
/* name - "Slim", type - "Giraffe", country_id - 1 */
INSERT INTO Animals(name, type, country_id)
VALUES ('Slim', 'Giraffe', 1);
SELECT animals.name, animals.type, countries.country FROM animals, countries WHERE animals.country_id = countries.id ORDER by animals.country_id desc
Try it😊
+ 1
INSERT INTO animals
VALUES ('Slim','Giraffe',1);
SELECT animals.Name,animals.type,countries.country
FROM animals INNER JOIN countries
ON animals.country_id = countries.id
ORDER BY countries.id desc;
0
Спасибо Вам большое! 👍
0
У меня все правильно, но пишет ту же ошибку
0
INSERT into Animals
(name ,type,country_id)
VALUES ("Slim", "Giraffe", 1 )
SELECT Animals.name,Animals.type, Countries.country
from Animals INNER JOIN Countries
on Animals.country_id=Countries.id
order by Countries.id desc
0
insert into animals values ('slim', 'Giraffe', 1);
select animals.name, animals.type, countries.country
from animals inner join countries
on animals.country_id = countries.id
order by countries.id desc;
почему ошибка НЕТ ДАННЫХ?
0
insert into animals values ('slim', 'Giraffe', 1);
select animals.name, animals.type, countries.country
from animals inner join countries
on animals.country_id = countries.id
order by countries.id desc;
Подскажите, пожалуйста, что не так в запросе? Почему нет введенных данных?
0
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;