Mysql使用简单教程(三)
在上篇文章给大家介绍了mysql使用简单教程(二) mysql中结构相同的两个表进行合并:(注意需要两个表的结构是一样的) 有如下结构的两个表father和person。 合并的步骤为: 1.把person表和father表两个表进行联合输出到临时表tmp中。 命令为:>create temporary table tmp select * from person union select *from father; 2.创建结果表,并创建主键。 命令为:>create table resu(name varchar(20) primary key,age int,high int,add
用户评论