題目要求:對於如下表actor,其對應的資料為:
actor_id
first_name
last_name
last_update
1penelope
guiness
2006-02-15 12:34:33
2nick
wahlberg
2006-02-15 12:34:33
請你建立乙個actor_name表,並且將actor表中的所有first_name以及last_name匯入該錶.
actor_name表結構如下:
列表型別
是否為null
含義first_name
varchar(45)
not null
名字last_name
varchar(45)
not null
姓氏
create table actor_name(
first_name varchar(45) not null,
last_name varchar(45) not null);
insert into actor_name
select first_name,last_name from actor;
牛客網SQL刷題41 50
create table if not exists titles test id int 11 not null primary key,emp no int 11 not null,title varchar 50 not null,from date date not null,to date...
牛客網刷題 SQL篇
牛客網sql刷題日記 day 1 查詢最晚入職員工的資訊 題目描述 有乙個員工employees表簡況如下 建表語句如下 create tableemployees emp noint 11 not null,birth datedate not null,first namevarchar 14 ...
牛客網刷題
時間限制 c c 1秒,其他語言2秒 空間限制 c c 262144k,其他語言524288k 64bit io format lld 立華奏在學習初中數學的時候遇到了這樣一道大水題 設箱子內有 n 個球,其中給 m 個球打上標記,設一次摸球摸到每乙個球的概率均等,求一次摸球摸到打標記的球的概率 e...