我要查询插入到我正在使用2张桌子
第一个表是“ applicant_notif”,它具有
notif_id
电子邮件
notif_fk_table
notif_content
第二个表是具有以下内容的用户 用户身份 电子邮件 密码
我正在使用甚至调度程序来自动查询一些通知,然后它将发送到所有帐户。
现在,我在事件计划程序中的查询是
INSERT INTO amilyar_applicant_notif (email, notif_fk_table, notif_content) VALUES ('would be the all emails in users table', 'amilyar_properties','Reminder: You need to pay for your...')
我将在事件调度程序中查询以获取用户表中的所有电子邮件并将其发送到applicant_notif表的正确语法是什么
答案 0 :(得分:0)
INSERT INTO amilyar_applicant_notif (email, notif_fk_table, notif_content)
SELECT email, 'amilyar_properties','Reminder: You need to pay for your...'
FROM users;