首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
About_datebase
】的更多相关文章
About_datebase
1:创建数据库的名字 create database + 表名; 2:连接数据库 use + 表名; 3:删除数据库 drop database + 表名; 4:创建表 create table + 表名(); 5:删除表 drop tabe + 表名; 6:复制表 (把表2复制到表1) (1) create table + 表名1 + select * from 表名2: (2) create table + 表名1 + select * from 表名2 where 1= 0: ---…