SQL227 创建一个actor表,包含如下列信息

题目描述

创建一个actor表

思路

使用 COMMENT 写了注释,开头的 DROP TABLE 以及 CREATE TABLE IF NOT EXISTS actor

代码

DROP TABLE IF EXISTS actor;
CREATE TABLE IF NOT EXISTS actor (
    actor_id smallint(5) primary key comment '主键id',
    first_name varchar(45) not null comment '名字',
    last_name varchar(45) not null comment '姓氏',
    last_update date not null comment '日期'
)
posted @ 2023-02-27 14:54  loongnuts  阅读(23)  评论(0编辑  收藏  举报