Monday, August 22, 2011

mysql :create table with a primary key

create table pmuser(
user_id BIGINT NOT NULL AUTO_INCREMENT,
user_name varchar(40),
user_pwd varchar(50),
primary key(user_id)
);

No comments:

Post a Comment