国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

使用sql命令創(chuàng)建表,并插入數(shù)據(jù)

原創(chuàng) 2019-05-16 12:11:44 848
摘要:使用sql命令創(chuàng)建表,并插入數(shù)據(jù) create table user( 'id' int(10) unsigned not null auto_increment, 'username' varchar(50) not null,   `pas
使用sql命令創(chuàng)建表,并插入數(shù)據(jù)


create table user(
'id' int(10) unsigned not null auto_increment,
'username' varchar(50) not null,
  `password` varchar(255) not null,
  `phone` varchar(15) not null,
  `email` varchar(255) not null,
  `time` int(10) not null,
  primary KEY (`id`)
);

insert into `user` values('1', 'guanchao', '123123', '13333333333', '123@qq.com', '1557801663');


批改老師:查無此人批改時間:2019-05-17 09:31:44
老師總結(jié):完成的不錯。sql命令創(chuàng)建表,以后有大用處。繼續(xù)加油。

發(fā)布手記

熱門詞條