Open yaogengzhu opened 1 year ago
如何快速的拷贝一个表
第一步:复制表的结构
create table new_table Like origin_table
第一步:拷贝数据
insert into new_table select * from origin_table
解决唯一索引,值不能重复的问题
删除唯一索引
drop index command_id on command_task;
创建非唯一索引
create index command_id on command_task (command_id);
笛卡尔积
等值连接
非等值连接
外连接
左连接:指的是左边的是主表
同理 右连接表示右边是主表
自连接