Mysql插入2个表

Mysql insert into 2 tables(Mysql插入2个表)
本文介绍了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

  1. 将其编写为两个查询并作为批处理执行
  2. 创建一个将执行两个插入命令的存储过程

如果您需要确保两个查询都会写入数据,您可以将这些插入内容包装在事务中.

You can wrap those inserts in transaction if you need to make sure that both queries will write the data.

这篇关于Mysql插入2个表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)