在Mysql上創立數據表實例代碼。本站提示廣大學習愛好者:(在Mysql上創立數據表實例代碼)文章只能為提供參考,不一定能成為您想要的結果。以下是在Mysql上創立數據表實例代碼正文
create table shujubiao(
id int primary key auto_increment, 指定為i整形
name varchar(32) not null, 指定為不固定長度,最年夜為32為字符,不克不及為空
password varchar(64) not null, 指定為不固定長度,最年夜為64為字符,不克不及為空
email varchar(128) not null, 指定為不固定長度,最年夜為128為字符,不克不及為空
age tinyint unsigned not null 指定為小整型
)