Blogger Information
Blog 27
fans 1
comment 1
visits 21829
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
mysql创建数据表作业-php线上五期
哥特的博客
Original
1066 people have browsed it

 

总结:utf8编码的数据库一个汉字占用3个字节,一个英文字符占用一个字节,新建的id需要使用自增以及不能使用空和负数,汉字的名字可以使用varchar类型字段,下面表使用的就是int和varchar类型。

 

实例

/*
Navicat MySQL Data Transfer

Source Server         : localhost_3306
Source Server Version : 50724
Source Host           : localhost:3306
Source Database       : n2

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

Date: 2019-03-21 12:35:05
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `staff`
-- ----------------------------
DROP TABLE IF EXISTS `staff`;
CREATE TABLE `staff` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id',
  `name` varchar(200) NOT NULL COMMENT 'name',
  `age` char(10) DEFAULT NULL,
  `phone` int(11) unsigned DEFAULT NULL,
  `company` varchar(200) DEFAULT NULL,
  `job` varchar(100) DEFAULT NULL,
  `address` varchar(200) DEFAULT NULL,
  `sal` int(10) DEFAULT NULL,
  `edu` varchar(100) DEFAULT NULL,
  `school` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of staff
-- ----------------------------
INSERT INTO `staff` VALUES ('1', '韦小宝', '23', '4294967295', '膳食房', '大内总管', '扬州', '5000', '无', '立春苑');
INSERT INTO `staff` VALUES ('2', '洪教主', '78', '4294967295', '神龙岛', '教主', '不明', '15000', '无', '无');
INSERT INTO `staff` VALUES ('3', '施琅', '43', '4294967295', '海军', '海军总管', '太晚', '20000', '无', '无');
INSERT INTO `staff` VALUES ('4', '韦小宝', '23', '4294967295', '膳食房', '大内总管', '扬州', '5000', '无', '立春苑');
INSERT INTO `staff` VALUES ('5', '韦小宝', '23', '4294967295', '膳食房', '大内总管', '扬州', '5000', '无', '立春苑');

运行实例 »

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

 

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