Mysql插入2个表
我想插入两个表
访问:
visit_id int | card_id int
注册:
registration_id int | type enum('in','out') | timestamp int | visit_id int
我想要类似的东西:
INSERT INTO `visits` as v ,`registration` as v
(v.`visit_id`,v.`card_id`,r.`registration_id`, r.`type`, r.`timestamp`, r.`visit_id`)
VALUES (NULL, 12131141,NULL, UNIX_TIMESTAMP(), v.`visit_id`);
不知道有没有可能
推荐答案
一个查询是不可能的,因为INSERT
只能向mysql中的一张表插入数据.你可以
It's not possible with one query as INSERT
can only insert data to one table in mysql. You can either
- 将其编写为两个查询并作为批处理执行
- 创建一个将执行两个插入命令的存储过程
如果您需要确保两个查询都会写入数据,您可以将这些插入内容包装在事务中.
You can wrap those inserts in transaction if you need to make sure that both queries will write the data.
相关文章