题目描述

创建一个actor表,包含如下列信息
列表类型是否为NULL含义
actor_id smallint(5) not null 主键id
first_name varchar(45) not null 名字
last_name varchar(45) not null 姓氏
last_update date not null 日期

答案详解

create table actor(
    actor_id smallint(5) not null,
    first_name varchar(45) not null,
    last_name varchar(45) not null,
    last_update date not null,
    primary key(actor_id)
)

  

posted on 2021-03-11 14:13  童话Bluebells  阅读(195)  评论(0编辑  收藏  举报