博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(笔记)Mysql命令create table:创建数据表
阅读量:6201 次
发布时间:2019-06-21

本文共 393 字,大约阅读时间需要 1 分钟。

 

create table命令用来创建数据表。

create table命令格式:create table <表名> (<字段名1> <类型1> [,..<字段名n> <类型n>]);
例如,建立一个名为MyClass的表:

字段名 数字类型 数据宽度 是否为空 是否主键 自动增加 默认值
id int 4 primary key auto_increment  
name char 20      
sex int 4     0
degree double 16      

mysql> create table MyClass(
    > id int(4) not null primary key auto_increment,
    > name char(20) not null,
    > sex int(4) not null default '0',
    > degree double(16,2));

转载地址:http://cbtca.baihongyu.com/

你可能感兴趣的文章
转发一篇学生的心得
查看>>
分布式事务处理方法论
查看>>
AlwaysOn 同步时间的测试
查看>>
按键精灵执行自动化测试用例过程中,如有异常,如何抛出异常?
查看>>
springmvc不进入Controller导致404
查看>>
MyBatis3配置文件示例及解释
查看>>
4.JasperReports学习笔记4-查询数据库生成动态的报表(WEB)
查看>>
Struts2 文件上传 之 文件类型 allowedTypes
查看>>
Transaction rolled back because it has been marked as rollback-only
查看>>
java中urlrewrite的配置和使用
查看>>
创建spring自定义注解进行自动装配
查看>>
modernizr的介绍和使用
查看>>
DataSet单元格操作
查看>>
CF960G Bandit Blues(第一类斯特林数)
查看>>
bzoj4145 [AMPPZ2014]The Prices(状压dp)
查看>>
Image和Base64互相转换
查看>>
允许远程用户登录访问mysql的方法
查看>>
使用word 2013发布博客到cnblogs设置
查看>>
模数混合电路(模拟、数字电源和地)
查看>>
数据库三大范式
查看>>