Blogger Information
Blog 20
fans 0
comment 0
visits 39969
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
MySQL数据库/增删改查2019年3月22日16时06分
Time
Original
773 people have browsed it

实例

/*
Navicat MySQL Data Transfer

Source Server         : 本地
Source Server Version : 50553
Source Host           : 127.0.0.1:3306
Source Database       : db_lasy

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

Date: 2019-03-22 16:03:43
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id',
  `name` varchar(50) NOT NULL COMMENT '名字',
  `age` tinyint(3) NOT NULL COMMENT '年龄',
  `pinyin` varchar(50) NOT NULL COMMENT '拼音',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('1', '侯亮平', '30', 'houliangping');
INSERT INTO `user` VALUES ('2', '赵瑞龙', '40', 'zhaoruilong');
INSERT INTO `user` VALUES ('3', '李达康', '50', 'idakang');
INSERT INTO `user` VALUES ('4', '祁同伟', '45', 'qitongwei');
INSERT INTO `user` VALUES ('5', '高小琴', '30', 'gaoxiaoqin');
INSERT INTO `user` VALUES ('6', '季昌明', '45', 'jichangming');
INSERT INTO `user` VALUES ('8', '赵德汉', '45', 'zhaodehan');
INSERT INTO `user` VALUES ('9', '高育良', '50', 'gaoyuliang');
INSERT INTO `user` VALUES ('10', '陈海', '30', 'chenhai');
INSERT INTO `user` VALUES ('11', '高小凤', '30', 'gaoxiaofeng');

运行实例 »

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

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