私はこの種のことをしたいと思います:
IF ((19, 13) NOT IN (select idUtente, IdLezione from partecipa)) THEN
insert into partecipa
(IdUtente, IdLezione,
IdAbbonamento,
utente,
prova, riserva)
values(
19, 13,
(select idAbbonamento from abbonamento where attivo=1 and idUtente=19),
(select concat(u.nome," ",u.cognome) from abbonamento as a, utente as u where a.attivo=1 and a.idUtente=u.idUtente and u.idUtente=19),
0, 0)
end if;
しかし、構文にエラーがあります
Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IF ((19, 13) NOT IN (select idUtente, IdLezione from partecipa)) THEN insert int' at line 1 0.000 sec
そしてインターネット上で私は解決策を見つけることができません。誰かが私を助けることができますか?