mysql資料庫 資料型別與約束的知識點小結 Z3

2021-10-25 09:25:42 字數 1403 閱讀 9914

~本特利~

小結知識點

create

table mydb.student (

id int

unsigned

primary

keyauto_increment

comment

'學號'

, name varchar(20

)not

null

comment

'姓名'

,gender enum

('男'

,'女'

)not

null

comment

'性別'

, birth_date date

notnull

comment

'出生日期'

, start_date date

notnull

comment

'入學日期'

, address varchar

(255

)not

null

default

''comment

'家庭住址'

'姓名'

, content text

notnull

comment

, ip varchar(15

)not

null

default

''comment

'ip位址'

, add_time timestamp

default

current_timestamp

comment

'發表時間'

mysql資料庫-資料庫入門的知識點小結-z1

mysql資料庫-資料庫基本操作的知識點小結-z2

mysql資料庫-資料型別與約束的知識點小結-z3

mysql資料庫基礎 資料型別和約束

char 固定長度 char 4 as as varchar 可變長度字串 varchar 4 as as text 大文字儲存 字元 4000 1 整數和浮點數如果不需要小數部分,則使用整數來儲存資料,並且根據整數的大小,來選擇合適的整數型別,如果需要小數部分,則使用浮點數型別,浮點數型別中,有f...

Mysql資料庫 約束型別

mysql資料庫的約束型別有 主鍵約束 primary key 外來鍵約束 foreign key 非空約束 not null 唯一性約束 unique 預設約束 default 一.主鍵約束 primary key 主鍵約束要求主鍵列的資料唯一,並且不能為空。主鍵分為兩種型別 單字段主鍵和多字段聯...

MYSQL資料庫約束型別

主鍵約束要求主鍵列的資料唯一,並且不能為空。主鍵分為兩種型別 單字段主鍵和多字段聯合主鍵。寫法主鍵由多個字段聯合組成。語法規則 primary key 欄位1,欄位2,欄位n 只能與primary key 聯用 語法 字段 資料型別 primary key auto increment n n為起始...