Blogger Information
Blog 13
fans 0
comment 0
visits 11019
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
sql创建数据表
linuxup的博客
Original
942 people have browsed it
/*
Navicat MySQL Data Transfer

Source Server         : lqq
Source Server Version : 50553
Source Host           : localhost:3306
Source Database       : php

Target Server Type    : MYSQL
Target Server Version : 50553
File Encoding         : 65001

Date: 2019-03-20 23:08:18
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_name` varchar(255) NOT NULL COMMENT 'mingzi',
  `age` smallint(6) NOT NULL COMMENT 'nianling',
  `mobile` char(11) NOT NULL COMMENT 'shouji',
  `sex` tinyint(4) NOT NULL COMMENT 'xingbie',
  `hobby` varchar(255) NOT NULL COMMENT 'aihao',
  `zipcode` char(6) NOT NULL COMMENT 'youbian',
  `addr` varchar(255) NOT NULL COMMENT 'dizhi',
  `height` varchar(255) NOT NULL COMMENT 'shengao',
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'shijian',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('8', '李真高', '20', '15273190123', '0', '篮球', '410014', '地球中国湖南', '190', '2019-03-20 23:04:28');
INSERT INTO `user` VALUES ('3', '李全权', '18', '18373190150', '1', '篮球', '410014', '地球中国湖南', '188', '2019-03-20 23:04:26');
INSERT INTO `user` VALUES ('4', '李蕾', '18', '18373190151', '0', '羽毛球', '410014', '地球中国上海', '188', '2019-03-20 23:04:23');
INSERT INTO `user` VALUES ('5', '李真好', '30', '18373190152', '0', '兵乓球', '410014', '地球中国上海', '150', '2019-03-20 23:04:21');
INSERT INTO `user` VALUES ('6', '李真帅', '31', '15373190153', '0', '足球', '410014', '地球中国湖北', '155', '2019-03-20 23:04:19');
INSERT INTO `user` VALUES ('7', '李真美', '31', '15573190143', '0', '跑步', '410014', '地球中国江西', '159', '2019-03-20 23:04:16');
INSERT INTO `user` VALUES ('9', '李真牛', '22', '15174190123', '0', '篮球', '410014', '地球中国广州', '170', '2019-03-20 23:04:13');
INSERT INTO `user` VALUES ('10', '李真猛', '25', '15172190123', '0', '篮球', '410014', '地球中国广西', '175', '2019-03-20 23:04:11');
INSERT INTO `user` VALUES ('11', '李真棒', '27', '15772140123', '0', '棒球', '410014', '地球中国海南', '179', '2019-03-20 23:04:08');
INSERT INTO `user` VALUES ('12', '李真二', '22', '15272140222', '0', '棒球', '410014', '地球中国北京', '172', '2019-03-20 23:04:04');
INSERT INTO `user` VALUES ('14', '李真巧', '22', '15272140233', '0', '棒球', '410014', '地球中国陕西', '177', '2019-03-20 23:07:38');


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!