Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
user_id我有一个查询,每次运行时都会返回不同数量的'(基于 的数量subscribers)。
user_id
subscribers
我需要做的是将这些user_id结果中的每一个插入到表中的单独行中,同时在单独的列中插入一条简单的“新警报”消息。
我怎么可能这样做呢?在这种情况下,for each 循环会起作用吗?
试试这个:
INSERT INTO alert_table SELECT user_id, 'new alert' FROM ... WHERE ...
使用您自己的查询,只需在INSERT INTO alert_table子句前面加上它。
INSERT INTO alert_table