三、建表案例
给同学建个档案表
有如下信息:
姓名:char(4)
年龄:tinyint unsigned
Email:varchar(30)
手机号:char(11)
简介:varchar(1000)
毕业薪水:decimall(7,2)
入学日期:date
Create table php313 ( Id primary key auto_increment, Name char(3) not null default ‘’, Age tinyint unsigned not null default 0, Email varchar(30) not null default ‘’, Tel char(11) not null default ‘’, Salary decimal(7,2) not null default ‘1800.68’, Riqi date not null default ‘2012-03-13’ )charset utf8;