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。
mysql定时执行,naviicat连接本地mysql,删除mysql默认test库,MySQL程序中断语句,mysql字段插入,mysql 5.7 引擎区别