Blogger Information
Blog 17
fans 1
comment 1
visits 16503
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
user表
雷国恩的博客
Original
1724 people have browsed it

实例user表

/*
Navicat MySQL Data Transfer

Source Server         : blog
Source Server Version : 50553
Source Host           : localhost:3306
Source Database       : blog

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

Date: 2019-03-23 20:46:21
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
  `id` int(3) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `sex` char(10) DEFAULT NULL,
  `age` int(4) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('12', '杨过', '男', '30', '华山');
INSERT INTO `user` VALUES ('13', '张无忌', '男', '20', '重庆');
INSERT INTO `user` VALUES ('14', '郭靖', '男', '21', '奉节');
INSERT INTO `user` VALUES ('15', '小龙女', '女', '22', '北京');
INSERT INTO `user` VALUES ('16', '扫地神僧', '男', '80', '上海');
INSERT INTO `user` VALUES ('18', '达摩', '男', '150', '少林寺');
INSERT INTO `user` VALUES ('19', '如来', '男', '200000', '西天');
INSERT INTO `user` VALUES ('20', '鸿钧老祖', '男', '1400000', '洪荒');
INSERT INTO `user` VALUES ('21', '创世元灵', '男', '1000000000', '宇宙');
INSERT INTO `user` VALUES ('32', '保来', '男', '30', '重庆');

运行实例 »

点击 "运行实例" 按钮查看在线实例

 

Correction status:Uncorrected

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