zoukankan      html  css  js  c++  java
  • 笔记之MySQL创建表create

    创建表
    要求:创建一个教师表teacher,身高保留两位小数
    drop table if exists teacher;                                      (如果存在一个表teacher,删除它;这是避免表名已经存在无法创建新表)


    create table teacher(                                                (创建一个教师表,表名是teacher)


    id int unsigned primary key auto_increment,            (字段id,int unsigned两个单词连起来意思是无符号范围的整数,primary key主键,auto_increment递增)


    name varchar(5),                                                      (字段name,varchar行:字段name,varchar(5)字符串5位)


    age tinyint unsigned,                                                (字段age,tinyint unsigned ,意思是无符号整数,这个范围是(0~255))


    heihgt decimal(5,2)                                                   (字段heihgt,decimal(5,2),解析 总共五位数,小数2位,整数3位)
    )

    需要了解整型、无符号范围、主键、字符串等数据类型

    需要数据可以自己插入(insert into)下面是完整的创建表格的框架:

    drop table if exists teacher;
    create table teacher(
    id int unsigned primary key auto_increment,
    name varchar(5),
    age tinyint unsigned,
    heihgt decimal(5,2)
    )

  • 相关阅读:
    正则表达式 UBB 实例
    ThinkSNS1.6 群组邀请好友 通知页面,出现同意,忽略功能
    netbeans 自己常用的快捷键
    Windows下安装PEAR, PHPUnit成功
    PHP XML 的 DOMDocument 读取功能
    PHP XML 的 DOMDocument 创建内容
    使用 JSON 进行数据传输
    Jquery操作select
    去除VMWare Beep(VMWare 声音|嘟)
    一步步创建 边栏 Gadget(二)
  • 原文地址:https://www.cnblogs.com/will-wu/p/12717404.html
Copyright © 2011-2022 走看看