最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

mysql数据库学习――3,表的创建,删除和变更_MySQL

来源:动视网 责编:小采 时间:2020-11-09 18:39:52
文档

mysql数据库学习――3,表的创建,删除和变更_MySQL

mysql数据库学习――3,表的创建,删除和变更_MySQL:bitsCN.com mysql数据库学习——3,表的创建,删除和变更 表创建create table mytbl(id int auto_increment not null,name char(10) not null,birth date not null,wight int,sex enum('f&
推荐度:
导读mysql数据库学习――3,表的创建,删除和变更_MySQL:bitsCN.com mysql数据库学习——3,表的创建,删除和变更 表创建create table mytbl(id int auto_increment not null,name char(10) not null,birth date not null,wight int,sex enum('f&


bitsCN.com

mysql数据库学习——3,表的创建,删除和变更

表创建create table mytbl(id int auto_increment not null,name char(10) not null,birth date not null,wight int,sex enum('f','m'));指定数据库引擎的表创建create table mytbl(id int auto_increment not null,name char(10) not null,birth date not null,wight int,sex enum('f','m'))engine=memory;创建临时表create temporary table mytbl(id int auto_increment not null,name char(10) not null,birth date not null,wight int,sex enum('f','m'));

复制数据表结构(也可以这样创建一个临时表作副本create temporary table tblnew like tblold)create table tblnew like tblold同时复制数据insert into tblnew select * from tblold从查询结果创建表create table tblnew select * from tblold

删除数据表

drop table tbl_namedrop table tbl_name ,tbl2_namedrop table if exists tbl_namedrop temporary table tbl_name

修改数据表

修改数据列的数据类型alter table mytbl modify i mediumint unsignedalter table mytbl chang i i mediumint unsigned修改数据列的数据类型和字符集alter table mytbl modify i mediumint character set ucs2修改数据表的存储引擎alter table mytbl engine=engine_name

重命名数据表alter table tbl_name rename to new_tbl_namerename talbe tbl_name to new_tbl_name重命名多个数据表 rename talbe tbl_name to new_tbl_name,t1 to t2 ,t3 to t4移动数据表到另一个数据库alter table db1.tbl_name rename to db2.new_tbl_namerename talbe db1.tbl_name to db2.new_tbl_name


bitsCN.com

文档

mysql数据库学习――3,表的创建,删除和变更_MySQL

mysql数据库学习――3,表的创建,删除和变更_MySQL:bitsCN.com mysql数据库学习——3,表的创建,删除和变更 表创建create table mytbl(id int auto_increment not null,name char(10) not null,birth date not null,wight int,sex enum('f&
推荐度:
标签: 删除 创建 数据库
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top