作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想做这样的事情:
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
在互联网上我找不到任何解决方案。有人可以帮助我吗?
最佳答案
试试这个:
INSERT INTO partecipa (IdUtente,
IdLezione,
IdAbbonamento,
utente,
prova,
riserva)
SELECT
19,
13,
ab.idAbbonamento,
concat(u.nome, ' ', u.cognome),
0,
0
FROM abbonamento AS ab
INNER JOIN abbonamento AS a ON ab.attivo = a.attivo
AND ab.idUtente = a.idUtente
INNER JOIN utente AS u ON a.idUtente = u.idUtente
WHERE a.attivo = 1
AND u.idUtente = 19
AND NOT EXISTS(SELECT 1
FROM partecipa
WHERE idUtente = 19
AND IdLezione = 13);
关于mysql - if在mysql中插入语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14960022/
我是一名优秀的程序员,十分优秀!