Create the data table instance code on Mysql

  • 2020-06-12 10:47:40
  • OfStack

 
create table shujubiao( 
id int primary key auto_increment,  Specified as i plastic  
name varchar(32) not null,  Specifies a variable length, maximum 32 Is a character, cannot be empty  
password varchar(64) not null,  Specifies a variable length, maximum 64 Is a character, cannot be empty  
email varchar(128) not null,  Specifies a variable length, maximum 128 Is a character, cannot be empty  
age tinyint unsigned not null  Specifies as a small integer  
) 

Related articles: