标签:创建 ase 编辑 alter gnu null math lis rop
使用编辑器编辑指令复制表结构
mysql> create table t4(select * from t3 where 5=4);
mysql> create table t4(select id,name from t3 where 5=4);
复制记录
mysql> insert into t3 select * from t10 where id=9;
删除表
mysql> drop table t1;
删除库
mysql> drop database gnu;
标签:创建 ase 编辑 alter gnu null math lis rop
原文地址:http://blog.51cto.com/13939728/2164513