Здравствуйте
При создании триггера возникла небольшая ошибка
delimiter #
create trigger `NatCheck` before insert on `artist`
for each row
begin
declare x int;
set x = (select Count(*) from `allowednationality` where `Nationality` = New.`Nationality`)
if New.`Nationality` = `allowednationality`.`Nationality`
then
select 'Oho';
else
select 'Error: Table have not this Nationality' as `message`;
end if;
end#
delimiter ;
ошибка: Error Code: 1415. Not allowed to return a result set from a trigger
Подскажите пожалуста в чем может быть дело