Home >Database >Mysql Tutorial >Mysql技术内幕(第四版)读书笔记(一)_MySQL

Mysql技术内幕(第四版)读书笔记(一)_MySQL

WBOY
WBOYOriginal
2016-05-27 13:46:391361browse

做为一个程序员来说,都要和数据库打交道,不管是关系型的(SQL Server、MySql、Oracle等),还是非关系型的(MongoDB等);我觉得只要使用过或者了解过,大家或多或少的都掌握了SQL的术语和基本概念,例如:数据库(DB)、管理系统(MS)、关系(R),这些术语的记得概念我就不再描述了,大家可以自行搜索!其实我也不习惯于这些概念性的东西!为此我用以下定义来简化:

 

数据库管理系统(RDBMS)= 数据库(DB)+ 管理系统(MS)+ 关系(R)

 

为了和Mysql交互,当然要通过SQL这种标准化的数据库语言,类似于这种:

 

create table student(

student_id int,

student_name char(20),

student_age int

);

Mysql 的体系结构:客户端/服务端的体系结构;

 

今天就写到这儿吧 先了解一下Mysql吧,下一部分就总结SQL语句!未完待续...........

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn