列表

详情


SQL227. 创建一个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 日期

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

Mysql 解法, 执行用时: 3ms, 内存消耗: 3364KB, 提交时间: 2021-10-04

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

Sqlite 解法, 执行用时: 9ms, 内存消耗: 3180KB, 提交时间: 2021-06-15

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

Sqlite 解法, 执行用时: 9ms, 内存消耗: 3180KB, 提交时间: 2021-05-27

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

Sqlite 解法, 执行用时: 9ms, 内存消耗: 3192KB, 提交时间: 2021-03-05

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

Sqlite 解法, 执行用时: 9ms, 内存消耗: 3252KB, 提交时间: 2021-09-09

CREATE TABLE actor(
actor_id smallint(5) primary key,
first_name varchar(45) not null,
last_name varchar(45) not null,
last_update date not null);

上一题