mysql怎样将里面的数据全部打乱重新存储

mysql怎样将里面的数据全部打乱重新存储,第1张

可以利用rand函数排序源表数据,再插入回源表。请参考下列实验:

假设有学生表存储数万行记录,结构如下

student(sid char(10) 主键,sname,sex,dob )

执行下面系列查询将原有记录打乱插入回学生表:

-- 创建一个结构与学生表结构相同的中间过渡表

create table s1 (sid char(10) primary key,

sname varchar(50),sex char(1),dob date)

-- 将学生表中的数据插入到s1

insert into s1 select * from student

-- 清空学生表

truncate table student

-- 将中间过渡表s1中的记录打乱插入回学生表

insert into student select * from s1 order by rand()

-- 删除过渡表

drop table s1

在前面在加一列,然后把union all 的结果放到子查询中,用来排序

比如:

select * from

(select 0+a ord,t.* from where a is not null

union all

select 1+b ord,t.* from where a is not null

) ta

order by ord

创建表的时候,在最后面加个ENGINE=InnoDB DEFAULT CHARSET=utf8

即create table XXX(

)ENGINE=InnoDB DEFAULT CHARSET=utf8

然后在插入就可以了


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8672793.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-19
下一篇 2023-04-19

发表评论

登录后才能评论

评论列表(0条)

保存