MySQL创建表

Filed Under (php) by boymg on 14-10-2007

CREATE TABLE userinfo (
userid int(11) NOT NULL auto_increment,
username varchar(200) NOT NULL,
friend int(11) NOT NULL default ‘0′,
PRIMARY KEY (userid)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Post a comment

You must be logged in to post a comment.