Blogger Information
Blog 12
fans 0
comment 0
visits 11912
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
SQL数据库基本常识
張涛的博客
Original
840 people have browsed it

一、什么是MySQL

  • DBMS:(Database Management System)数据库管理系统
  • RDBMS:(Relational Database Management System)
    • 中文:关系型数据库管理系统
    • 关系:可以暂时简单的理解为一张二维表格
    • MySQL:最流行的关系型数据库管理系统

二、为什么MySQL如此流行

1.免费开元,使用简单
2.性能优异,社区活跃:遇到问题可快速找到解决方法
3.巨头维护,安全放心:Oracle
4.与PHP/Apache 是一对基友,不离不弃,生死相依

三、RDBMS基本术语

  • 数据库:一组相关联的数据表的集合,类似于目录
  • 数据表,一张用来存储数据的二维表格,类似于文件


注意:
1.数据库与数据表之间的关系,类似于目录与文件的关系
2.数据表示一个二维数组,数据表中的每一行都是一个二维数组中的一个一维数组。

  • 行:也叫记录,是一组相关数据的集合。例如某个用户的相关信息
  • 列:也叫字段,某个具体的数据。例如用户姓名:admin
  • 主键:唯一识别某一行记录的字段名称,一张表只能有一个主键。例如:id
  • 外键:关于关联二维数据表的,即当前表的外键,应该是另一张表的主键。
  • 索引:类似于字典的索引,在特定字段上创建,用来快速查询数据。

四、数据库管理工具

MySQL工具很多,主要有客户端和网页版
· phpMyAdmin网页版

  • 网页版一般使用在已经上线的网站维护

· Navicat for MySql客户端

  • 客户端一般使用在网站开发时期
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