create table user(
id int(4) not null primary key auto_increment,
username char(20) DEFAULT NULL,
password varchar(20) DEFAULT NULL,
email varchar(30) DEFAULT NULL
);
id int(4) not null primary key auto_increment,
username char(20) DEFAULT NULL,
password varchar(20) DEFAULT NULL,
email varchar(30) DEFAULT NULL
);
2017-04-17
'email' varchar(30) DEFAULT NULL,
'state' int(11) DEFAULT NULL,
'code' varchar(64) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
不能超過三百字,我也很是尷尬。
'state' int(11) DEFAULT NULL,
'code' varchar(64) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
不能超過三百字,我也很是尷尬。
2017-04-17
CREATE DATABASE regist_web;
USE regist_web;
CREATE TABLE 'user'(
'uid' int primary key auto_increment,
'username' varchar(20) DEFAULT NULL,
'password' varchar(20) DEFAULT NULL,
'nickname' varchar(20) DEFAULT NULL,
USE regist_web;
CREATE TABLE 'user'(
'uid' int primary key auto_increment,
'username' varchar(20) DEFAULT NULL,
'password' varchar(20) DEFAULT NULL,
'nickname' varchar(20) DEFAULT NULL,
2017-04-17
慕友們,我把jar包都打包了:http://pan.baidu.com/s/1jH75l7C,不謝,我叫雷鋒。別忘點贊哦,比心。
2017-04-17