牛客网第33题:创建actor表
create table if not exists actor
(
actor_id smallint(5) not null primary key,
first_name varchar(45) not null,
last_name varchar(45) not null,
last_update datetime not null default current_timestamp
)
创建好的表格如下:
注意:mysql获取获取系统默认时间用 default current_timestamp
资料补充
在sqlite中,获取系统默认时间用datatime(now,localtime)