数据库的创建

语法

  1. create database database_name

表的创建

语法

  1. create table table_name
  2. (<列名1> <数据类型> <该列所需约束>,
  3. <列名2> <数据类型> <该列所需约束>,
  4. <列名3> <数据类型> <该列所需约束>,
  5. ...
  6. ...
  7. <该表的约束1>, <该表的约束2>, ...)

示例

  1. create table Product
  2. (product_id char(4) not null,
  3. product_name varchar(100) not null,
  4. product_type varchar(32) not null,
  5. sale_price integer ,
  6. purchase_price integer ,
  7. regist_date date ,
  8. primary key (product_id)
  9. );

命名规范

  • 数据库名称、表名和列名(、别名)等只可以使用以下 3 种字符。
    • 半角英文字母
    • 半角数字
    • 下划线(_)
  • 名称必须以半角英文字母作为开头。
  • 名称不能重复。

image.png

数据类型