Blogger Information
Blog 9
fans 0
comment 0
visits 5434
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
创建数据库,表 2019.0320.20点
一个不太二的二叔的博客
Original
608 people have browsed it

实例

/*
Navicat MySQL Data Transfer

Source Server         : 127.0.0.1
Source Server Version : 50553
Source Host           : localhost:3306
Source Database       : dyq

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

Date: 2019-03-21 16:48:33
*/

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 '\r\nid',
  `name` varchar(50) NOT NULL COMMENT '姓名',
  `age` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '年龄',
  `email` varchar(50) NOT NULL COMMENT '邮箱',
  `py` varchar(100) NOT NULL,
  `occupation` varchar(50) NOT NULL COMMENT '职业',
  `telephone` int(11) unsigned NOT NULL COMMENT '电话',
  `interest` varchar(50) NOT NULL COMMENT '爱好',
  `sexuality` varchar(50) NOT NULL COMMENT '性别',
  `address` varchar(50) NOT NULL COMMENT '住址',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('1', '段永强', '18', '492451002@qq.com', 'dyq', '学生', '123456789', '篮球', '男', '西安');
INSERT INTO `user` VALUES ('2', '赵玲玲', '24', '5512487@qq.com', 'zll', '学生', '123456789', '篮球', '女', '西安');
INSERT INTO `user` VALUES ('3', '段永涛', '19', '450274186@', 'dyt', '学生', '123456789', '篮球', '男', '西安');
INSERT INTO `user` VALUES ('5', '聂小倩', '18', '79965@qq.com', 'nxq', '女鬼', '123456789', '篮球', '女', '西安');
INSERT INTO `user` VALUES ('6', '张无忌', '78', '755555@qq.com', 'zwj', '大侠', '123456789', '篮球', '男', '西安');

运行实例 »

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

1553158298(1).jpg课后总结:

  1. 数据库,是保存数据的,它属于关系型数据,数据库的表,需要新建。

  2. 表里面有字段,它保存数据,它有不同类型的数据,字段名用小写英文,加下划线;字段类型:整型,浮点型,字符串型,时间型。

  3. ySQL里的 连接 、 创建数据库 、创建表 、 创建字段、 增删查改, 全部可以用mysql语句进行操作

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