作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 table 是
id_stuff | kd_insert | name_stuff | date_createdd
1 | 1 | example | 2018-01-01
我像这样在 mysql 中创建查询
SELECT IF ((DATE_FORMAT(NOW(),'%Y-%m') > DATE_FORMAT(MAX(date_createdd),'%Y-%m')),
(
INSERT INTO tabless (name_stuff) VALUES ('stuff')
),
(
null
)
) FROM tabless GROUP BY id_stuff ORDER BY kd_insert
运行后,为什么会出现这样的错误
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 'INTO tabless (name_stuff) VALUES ('stuff').
以及如何创建正确的选择条件然后插入
?谢谢
最佳答案
我认为不可能编写这样的插入语句。你可以这样做 -
SELECT
if(
(DATE_FORMAT(NOW(), '%Y-%m')) > DATE_FORMAT(MAX(date_createdd), '%Y-%m'),
(@value = 'stuff'),
null
)
FROM
tabless
GROUP BY
id_stuff
ORDER BY
kd_insert;
INSERT INTO tabless (name_stuff) VALUES ('stuff');
关于mysql - 如何在 'IF' 语句中使用 'SELECT' 并在 mysql 上插入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48885873/
我是一名优秀的程序员,十分优秀!