牛客SQL题解-创建一个actor表,包含如下列信息

题目描述

创建一个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)
)

  

原文地址:https://www.cnblogs.com/Bluebells/p/14517592.html