建立乙個actor表,包含如下列資訊

2021-10-07 09:15:37 字數 1108 閱讀 5043

建立乙個actor表,包含如下列資訊(注:sqlite獲取系統預設時間是datetime(『now』,『localtime』))

列表型別

是否為null

含義actor_id

smallint(5)

not null

主鍵id

first_name

varchar(45)

not null

名字last_name

varchar(45)

not null

姓氏last_update

timestamp

not null

最後更新時間,預設是系統的當前時間

create

table actor

( actor_id smallint(5

)not

null

primary

key,

first_name varchar(45

)not

null

, last_name varchar(45

)not

null

, last_update timestamp

notnull

default

(datetime

('now'

,'localtime'))

)

create

table actor

( actor_id smallint(5

)not

null

, first_name varchar(45

)not

null

, last_name varchar(45

)not

null

, last_update timestamp

notnull

default

(datetime

('now'

,'localtime'))

,primary

key(actor_id)

)

建立乙個鍊錶

不知道為什麼總是忘了對鍊錶的操作,主要就是平時用的少,希望自己通過寫這編文章能加深對鍊錶操作的印象 目錄1.首先得要有兩個基本的標頭檔案 2.再然後得要有個結構體 3.這部分是函式前置宣告 4.鍊錶初始化 5.插入節點 6.列印整個鍊錶 7.釋放整個鍊錶的記憶體 8.整個程式示例 9.列印結果 in...

建立乙個actor name表

題目鏈結 對於如下表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 n...

建立乙個actor name表 newcoder

對於如下表actor,其對應的資料為 actor id first name last name last update 1 penelope guiness 2006 02 15 12 34 33 2 nick wahlberg 2006 02 15 12 34 33 建立乙個actor name...