返回使用sql命令......登陆

使用sql命令创建表,并插入数据

关超2019-05-16 12:11:44700
使用sql命令创建表,并插入数据


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');


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送