题解 | #创建一个actor表,包含如下列信息#
创建一个actor表,包含如下列信息
http://www.nowcoder.com/practice/ac233de508ef4849b0eeb4f38dcf09cf
drop table if exists actor ;
CREATE TABLE actor (
actor_id smallint(5) NOT NULL,
first_name varchar(45) NOT NULL,
last_name varchar(45) NOT NULL,
last_date date NOT NULL,
PRIMARY KEY (actor_id));
被标点符号搞了半天,‘’
查看17道真题和解析