mysql中sql语句查询的同时根据条件将数据插入到另一个表的做法?
我目前的需求是这样的,有两个表,table1、table2。table1中有一个字段叫name,table2中有两个字段分别叫name和flag。现在的需求是将table...
我目前的需求是这样的,有两个表,table1、table2。 table1中有一个字段叫name,table2中有两个字段分别叫name和flag。现在的需求是将table2中的数据导入到table1中,并且根据table2中flag字段的不同值,执行不同的插入语句,也就是说,flag的值不同,对应的向table1插入的语句就不同。请问大伙谁有怎么高招,请指点指点,一条sql语句如何做。 目前我想到的办法大概是:insert into table1 (name) select t2.name,if(t2.flag=0,,insert into table1( name) values(t2.name)) from table2 as t2 。 当然,这个语句是执行不了的,我的意思就是在把数据导入到table1的过程中判断一下flag值。如果等于0,正常执行最外面的到数据的sql,如果不等于1,则执行一条新的sql语句。当然,我举的例子中,两个插入的语句是一个意思,但这只是一个例子,我的实际需求中,if判断里面的第三个参数的插入语句部分仍然是一个判断,请大家不要抓住我两天插入语句一样的例子。
展开
2020-09-08 · MySQL开源数据库领先者
关注
展开全部
TABLE 语句
具体语法:TABLE table_name [ORDER BY column_name] [LIMIT number [OFFSET number]]
其实从语法上看,可以排序,也可以过滤记录集,不过比较简单,没有 SELECT 那么强大。
示例 1
简单的建一张很小的表 y1,记录数为 10 条。表 t1,插入 10 条记录
mysql-(ytt/3305)->create table t1 (r1 int,r2 int);
Query OK, 0 rows affected (0.02 sec)
mysql-(ytt/3305)->insert into t1
with recursive aa(a,b) as (
select 1,1
union all
select a+1,ceil(rand()*20) from aa where a < 10
) select * from aa;
Query OK, 10 rows affected (0.00 sec)
Records: 10 Duplicates: 0 Warnings: 0
- 简单全表扫描mysql-(ytt/3305)->select * from t1;+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)
- TABLE 结果mysql-(ytt/3305)->table t1;+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)
- 看下 table 的执行计划mysql-(ytt/3305)->explain table t1 order by r1 limit 2\G*************************** 1. row *************************** id: 1 select_type: SIMPLE table: t1 partitions: NULL type: ALLpossible_keys: NULL key: NULL key_len: NULL ref: NULL rows: 10 filtered: 100.00 Extra: Using filesort1 row in set, 1 warning (0.00 sec)
- 其实可以看到 TABLE 内部被 MySQL 转换为 SELECT 了。mysql-(ytt/3305)->show warnings\G*************************** 1. row *************************** Level: Note Code: 1003Message: /* select#1 */ select `ytt`.`t1`.`r1` AS `r1`,`ytt`.`t1`.`r2` AS `r2` from `ytt`.`t1` order by `ytt`.`t1`.`r1` limit 21 row in set (0.00 sec)
- 那其实从上面简单的例子可以看到 TABLE 在内部被转成了普通的 SELECT 来处理。示例 2应用于子查询里的子表。这里要注意,内表的字段数量必须和外表过滤的字段数量一致。克隆表 t1 结构mysql-(ytt/3305)->create table t2 like t1;Query OK, 0 rows affected (0.02 sec)
- 克隆表 t1 数据mysql-(ytt/3305)->insert into t2 table t1;Query OK, 10 rows affected (0.00 sec)Records: 10 Duplicates: 0 Warnings: 0
- table t1 被当做内表,表 t1 有两个字段,必须同时满足 t2 检索时过滤的字段也是两个。mysql-(ytt/3305)->select * from t2 where (r1,r2) in (table t1);+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)
- 注意:这里如果过滤的字段数量和子表数量不一致,则会报错。
展开全部
你在做梦呐。如果光是等于0 那非常简单 一个where flag=0就行了
你要是条件判断的多 那么去写存储过程赛。
不然 你就用笨办法
insert into table1 (name) select t2.name from table2 where flag=0;
insert into table1 (name) select t2.name from table2 where flag=1;
insert into table1 (name) select t2.name from table2 where flag=2;
多执行几次。。。。。。。
你要是条件判断的多 那么去写存储过程赛。
不然 你就用笨办法
insert into table1 (name) select t2.name from table2 where flag=0;
insert into table1 (name) select t2.name from table2 where flag=1;
insert into table1 (name) select t2.name from table2 where flag=2;
多执行几次。。。。。。。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看你的意思应该是根据条件不同,插入不同内容,可以用case来判断并赋予不同的值。不知道是不是这意思.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询