创建数据表

1290阅读 0评论2014-03-28 FIGHTERBEAT
分类:Mysql/postgreSQL

CREATE TABLE doctor(
  id int(11) NOT NULL auto_increment,
  name varchar(32) NOT NULL,
  password varchar(32) NOT NULL,
  PRIMARY KEY (id),
  UNIQUE KEY id (id),
  UNIQUE KEY name (name)
);
id,设置为主键,唯一,自增。
如果有其他字段也为唯一,比如用户名不能相同,为其添加为唯一。

   
上一篇:php中提示Undefined index
下一篇:如何添加数据信息