《Mysql應用在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 指定為小整型
)
維易PHP培訓學院每天發布《Mysql應用在Mysql上創建數據表實例代碼》等實戰技能,PHP、MYSQL、LINUX、APP、JS,CSS全面培養人才。
轉載請注明本頁網址:
http://www.snjht.com/jiaocheng/13075.html