色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

mysql屬于什么數據庫,mysql如何創建數據庫0

傅智翔2年前20瀏覽0評論
mysql屬于什么數據庫,mysql如何創建數據庫0?創建數據表

create table table_name (column_name column_type);

創建Author、Article、ArticleDetail三張表

#創建Author表

drop table if exists Author;

create table Author(

au_id int not null PRIMARY key auto_increment comment '主鍵',

name varchar(12) comment '姓名',

sex varchar(12),

address varchar(12),

qq varchar(12),

wechat varchar(25),

create_date datetime

)DEFAULT CHARSET=utf8;

#創建Article表

drop table if exists Article;

create table Article(

ar_id int not null PRIMARY key auto_increment comment '主鍵',

type varchar(12) comment '類型',

author varchar(12)comment '作者',

au_id int(11),

articles int(11),

qq_group int(11),

fans int(11),

update_date datetime

)DEFAULT CHARSET=utf8;

#創建ArticleDetail表

drop table if exists ArticleDetail;

create table ArticleDetail(

ad_id int not null PRIMARY key auto_increment comment '主鍵',

ar_id int(11),

title varchar(255) comment '文章標題',

url varchar(255)comment '鏈接',

reade_times int(11),

praise_times int(11),

comments_times int(11),

publish_date datetime,

FULLTEXT(url)

)DEFAULT CHARSET=utf8;

MySQL之

操作表

表中增加新列

alter table table_name add column_name column_type;

Author表增加國籍(hometown)列

#在Author表后增加國籍列

alter table Author add hometown varchar(12);

刪除表中的列

alter table table_name drop column_name ;

Author表刪除國籍(hometown)列

#在Author表中刪除國籍列

alter table Author drop column hometown;

刪除表

drop table table_name ;

刪除Author表

#刪除表沒有確認,也不能撤銷,執行后將直接刪除表

drop table Author;

重命名表

rename table table_nameA to table_nameB;

將Author表重命名為ITester_Authors

rename table Author to ITester_Authors;

rename table ITester_Authors to。