Home > Database > Mysql Tutorial > PHP+MySQL教程(1):MYSQL简介_MySQL

PHP+MySQL教程(1):MYSQL简介_MySQL

WBOY
Release: 2016-06-01 13:57:28
Original
839 people have browsed it

   MySQL 是最流行的开源数据库服务器。

什么是 MySQL?
MySQL 是一种数据库。数据库定义了存储信息的结构。

在数据库中,存在着一些表。类似 HTML 表格,数据库表含有行、列以及单元。

在分类存储信息时,数据库非常有用。一个公司的数据库可能拥有这些表:"Employees", "Products", "Customers" 以及 "Orders"。

数据库表
数据库通常包含一个或多个表。每个表都一个名称(比如 "Customers" 或 "Orders")。每个表包含带有数据的记录(行)。

下面是一个名为 "Persons" 的表的例子:

LastName FirstName Address City
Hansen Ola Timoteivn 10 Sandnes
Svendson Tove Borgvn 23 Sandnes
Pettersen Kari Storgt 20 Stavanger

上面的表含有三个记录(每个记录是一个人)和四个列(LastName, FirstName, Address 以及 City)。

查询
查询是一种询问或请求。

通过 MySQL,我们可以向数据库查询具体的信息,并得到返回的记录集。

请看下面的查询:

SELECT LastName FROM Persons上面的查询选取了 Persons 表中 LastName 列的所有数据,并返回类似这样的记录集:

LastName
Hansen
Svendson
Pettersen

 

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template