知数堂Mysql实战优化班19

1、 创建表:create table 表名(字段名 类型 约束)

            create table student(

            id int UNSIGNED PRIMARY KEY auto_increment,

            name VARCHAR(10),  # 表示长度是10

            age int UNSIGNED,    #表示无符号

            height decimal(5,2)

            )

        2、 删除表:drop table if exists 表名

            每条sql语句后要有;隔开,最后一条sql后面不用加;

            drop table if exists student;

            create table student(

            id int UNSIGNED PRIMARY KEY auto_increment,

            name VARCHAR(10),

            age int UNSIGNED,

            height decimal(5,2)

            )

版权声明:
作者:玉兰
链接:https://www.techfm.club/p/44185.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>