MySQL:按顺序插入选择
Posted
技术标签:
【中文标题】MySQL:按顺序插入选择【英文标题】:MySQL: insert select in order 【发布时间】:2017-02-01 10:59:09 【问题描述】:我想以特定顺序将数据插入表中。这是因为我需要给每个条目一个特定的 ID。我使用的是一个选择语句:
select (@i := @i + 1) as id, ...
order by column
我遇到的问题是这似乎不起作用。我从选择查询中得到我想要的结果。但是,当我尝试将数据插入表中时,将忽略 order by 语句。有什么方法可以强制插入语句中的顺序正确吗?
我想要的是这个:
+----+------+-------------+
| id | name | breadcrumbs |
+----+------+-------------+
| 1 | test | 01 |
| 5 | -d | 01,05 |
| 4 | c | 04 |
| 6 | e | 06 |
| 2 | -a | 06,02 |
| 3 | --b | 06,02,03 |
+----+------+-------------+
变成这样:
+----+------+-------------+
| id | name | breadcrumbs |
+----+------+-------------+
| 1 | test | 01 |
| 2 | -d | 01,05 |
| 3 | c | 04 |
| 4 | e | 06 |
| 5 | -a | 06,02 |
| 6 | --b | 06,02,03 |
+----+------+-------------+
在单独的临时表中。
【问题讨论】:
您希望根据父、子、孙子的排序面包屑生成 id - 例如 01 首先是 01,02 然后是 01,02,03 然后是 01,03 然后是 02到 02,01 等等? 【参考方案1】:我会确保 @i 已初始化,请参阅下面的 from 子句中的选择
MariaDB [sandbox]> drop table if exists t;
Query OK, 0 rows affected (0.14 sec)
MariaDB [sandbox]>
MariaDB [sandbox]> create table t(id int, name varchar(10), breadcrumbs varchar(100));
Query OK, 0 rows affected (0.18 sec)
MariaDB [sandbox]> insert into t values
-> ( 1 , 'test' , '01' ),
-> ( 5 , '-d' , '01,05' ),
-> ( 4 , 'c' , '04' ),
-> ( 6 , 'e' , '06' ),
-> ( 2 , '-a' , '06,02' ),
-> ( 3 , '--b' , '06,02,03');
Query OK, 6 rows affected (0.01 sec)
Records: 6 Duplicates: 0 Warnings: 0
MariaDB [sandbox]>
MariaDB [sandbox]> drop table if exists t1;
Query OK, 0 rows affected (0.13 sec)
MariaDB [sandbox]> create table t1 as
-> select
-> @i:=@i+1 id,
-> t.name,t.breadcrumbs
-> from (select @i:=0) i,
-> t
-> order by breadcrumbs;
Query OK, 6 rows affected (0.22 sec)
Records: 6 Duplicates: 0 Warnings: 0
MariaDB [sandbox]>
MariaDB [sandbox]> select * from t1;
+------+------+-------------+
| id | name | breadcrumbs |
+------+------+-------------+
| 1 | test | 01 |
| 2 | -d | 01,05 |
| 3 | c | 04 |
| 4 | e | 06 |
| 5 | -a | 06,02 |
| 6 | --b | 06,02,03 |
+------+------+-------------+
6 rows in set (0.00 sec)
【讨论】:
【参考方案2】:我想按特定顺序将数据插入到表中。
mysql 数据库表中的记录没有内部顺序。表是在无序集之后建模的。唯一存在的顺序是您在查询时使用ORDER BY
子句应用的顺序。因此,继续前进,您不必担心插入记录的顺序,而应确保您的表具有必要的列和数据,以便按照您想要的方式对结果集进行排序。
【讨论】:
以上是关于MySQL:按顺序插入选择的主要内容,如果未能解决你的问题,请参考以下文章
MYSQL语句中 选择最新插入的八条语句倒序输出 应该怎么写啊!!