mysql创建表和数据库

Posted 扬帆起航-梦起者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql创建表和数据库相关的知识,希望对你有一定的参考价值。

1.创建数据库:    创建的代码:create  数据库的代码:database   数据库表名:随便起,只要自己记住就行。test

create database test;

 

 

2.删除数据库: 删除的代码:drop  数据库代码:database  要删除哪一个数据库:数据库名:test

 

drop database test;

 

 

3.创建表:   数据库建好后该往里创建表了;例下  创建: create   表的代码: table   表名:随便取   ceshi   

技术分享图片
create table class
(
    code varchar(20) primary key,
    name varchar(20) not null
);
create table ceshi
(
    ids int auto_increment primary key,
    uid varchar(20),
    name varchar(20),
    class varchar(20),
    foreign key (class)  references class(code) 
);
技术分享图片

 

注:自增长代码代表:auto_increment

  主建的代码代表:primary key

  外键的代码代表公式:foreign key (列名)  references  主表名 (列名)

      fornign key+(列名)  代表给哪一个加外键 references 要引用哪个表里的列

      是否为空: 不为空的代码:not null

 

4.删除:      删除代码的代表:drop  删除的是表: table  要删的那个表名:ceshi

drop table ceshi;

 

 

 

 

代码写创建数据库是注意:

1.类型包含长度的,在类型后面加(括号),括号里面写长度

2.上一列写完加逗号

3.最后一列不要写逗号

4.在每一条SQL语句写完之后要加分号;

5.如果有外键关系,先创建主表

 

例子:

技术分享图片
创建表:
create table class
(
    code varchar(20) primary key,
    name varchar(20)
);
create table student
(
    code varchar(20) primary key,
    name varchar(20),
    sex bit,
    age int,
    class varchar(20),
    foreign key (class) references class(code)
);
create table kecheng
(
    code varchar(20) primary key,
    name varchar(20)
);
create table teacher 
(
    code varchar(20) primary key,
    name varchar(20)
);
create table chengji
(    
    ids int auto_increment primary key,
    scode varchar(20),
    kcode varchar(20),
    degree float,
    foreign key (scode) references student(code),
    foreign key (kcode) references kecheng(code)
);
create table tkecheng
(
    ids int auto_increment primary key,
    tcode varchar(20),
    kcode varchar(20),
    foreign key (kcode) references kecheng(code),
    foreign key (tcode) references teacher(code)
);

以上是关于mysql创建表和数据库的主要内容,如果未能解决你的问题,请参考以下文章

从 JSON 数据自动生成 MySQL 表和列

MySQL创建相同表和数据命令

MySQL管理表和索引

MySQL管理表和索引

《MySQL入门很简单》练习10.9

MySQL 表和列的注释