MySQL基础教程
目录
MySQL基础教程
这个MySQL基础教程解释一些基本的SQL语句。 如果这是您第一次使用关系数据库管理系统,本教程将为您提供使用MySQL数据库服务器所需的一切内容,例如查询数据,更新数据,管理数据库和创建表。
如果您已经熟悉其他关系数据库管理系统(如PostgreSQL,Oracle或Microsoft SQL Server等),则可以使用本教程来刷新您的知识,并了解MySQL的SQL方言与其他数据库系统的不同之处。
第1节. MySQL入门
本节将开始介绍和学习使用MySQL。我们将开始安装MySQL,下载示例数据库并将数据导入到MySQL服务器以进行练习。
- 安装MySQL数据库服务器 – 演示如何在计算机上安装MySQL数据库服务器。
- 下载MySQL示例数据库 – 介绍一个名称为
yiibaidb
的MySQL示例数据库,提供下载示例数据库及ER图。 - 将示例数据库导入到MySQL数据库服务器中 – 演示如何将示例数据库(
yiibaidb
)导入到MySQL数据库服务器中进行练习。
第2节. 查询数据
本节将帮助您了解如何从MySQL数据库服务器查询数据。 我们将从一个简单的SELECT
语句开始,从单个表查询数据。
- SELECT语句 – 显示如何使用简单的SELECT语句来查询单个表中的数据。
- SELECT DISTINCT语句 – 了解如何在
SELECT
语句中使用DISTINCT
运算符来消除结果集中的重复行。
第3节. 过滤数据
- WHERE – 学习如何使用
WHERE
子句根据指定的条件过滤行记录。 - AND运算符 – 介绍如何使用
AND
运算符以组合布尔表达式以形成用于过滤数据的复杂条件。 - OR运算符 – 介绍
OR
运算符,并展示如何将OR
运算符与AND
运算符组合以过滤数据。 - IN运算符 – 学习如何在
WHERE
子句中使用IN
运算符来确定值是否匹配列表或子查询中的指定值。 - BETWEEN运算符 – 显示如何使用
BETWEEN
运算符来根据指定范围查询数据。 - LIKE – 提供基于特定模式匹配查询数据的技术示例,以执行一些模糊查询。
- LIMIT子句 – 使用
LIMIT
来限制SELECT
语句返回的行数 - IS NULL – 使用
IS NULL
运算符测试值是否为NULL
。
第4节. 排序数据
- ORDER BY – 显示如何使用
ORDER BY
子句排序结果集。还将介绍使用FIELD
函数的自定义排序顺序。 - 使用ORDER BY子句进行自然排序 – 通过使用
ORDER BY
子句,演示MySQL中的各种自然排序技术。
第5节. 连接表
- MySQL别名 – 引入别名,包括表别名和列别名,以提高复杂查询的可读性,并避免在查询具有相同列名称的多个表中的数据时发生歧义错误。
- INNER JOIN – 应用内部联接技术来查询来自多个相关表的数据。
- LEFT JOIN – 学习如何使用左连接来生成包含来自连接左侧表中的行的结果集,并使用
NULL
值来补充不匹配行。 - CROSS JOIN – 学习如何使来自多个表的行的笛卡尔乘积。
- 自连接 – 使用表别名将表连接到自身,并使用其他类型的连接(如
INNER JOIN
或LEFT JOIN
)连接同一表中的行记录。
第6节. 分组数据
- GROUP BY子句 – 学习如何根据列或表达式将行记录分组到子组。
- HAVING子句 – 按特定条件过滤组。
第7节. MySQL子查询,派生表和通用表达式
- MySQL子查询 – 学习如何在另一个查询(外部查询)中嵌套另一个查询语句(内部查询),并使用内部查询的结果值作为外部查询条件。
- MySQL派生表 – 介绍派生表概念,并演示如何使用它来简化复杂查询。
- MySQL通用表表达式 – 解释通用表表达式概念,并向您展示如何使用CTE查询表中的数据。
- 递归CTE – 演示如何使用递归通用表表达式(CTE)遍历分层数据。
第8节. 使用SET操作符
- UNION和UNION ALL – 使用
UNION
和UNION ALL
操作符将两个或多个多个SELECT
语句的结果集合合并到一个结果集中。 - INTERSECT模拟 – 显示了几种模拟MySQL中
INTERSECT
运算符的方法。
第9节. 修改MySQL中的数据
在本节中,将学习如何使用各种MySQL语句来在表上执行插入,更新和删除数据操作。
- INSERT语句 – 学习如何使用各种形式的
INSERT
语句将数据插入到数据库表中。 - INSERT IGNORE – 解释将数据行插入到表中并忽略导致错误或异常的行的
INSERT IGNORE
语句。 - UPDATE语句 – 了解如何使用
UPDATE
语句及其选项来更新数据库表中的数据。 - UPDATE JOIN语句 – 显示如何使用带有
INNER JOIN
和LEFT JOIN
的UPDATE JOIN
语句执行交叉表更新。 - DELETE – 学习如何使用
DELETE
语句从一个或多个表中删除数据。 - ON DELETE CASCADE – 学习如何从父表中删除数据时,使用外部键从
DELETE CASCADE
引用动作删除子表中的数据。 - DELETE JOIN – 学习如何从多个表中删除数据。
- REPLACE语句 – 学习如何插入或更新数据,这取决于数据是否存在于表中。
- PREPARE语句 – 显示如何使用PREPARE语句执行查询。
第10节. MySQL事务
第11节. 管理MySQL数据库和表
本节介绍如何管理MySQL中最重要的数据库对象,包括数据库和表。
- MySQL数据库管理 – 学习各种语句来管理MySQL数据库,包括创建新数据库,删除现有数据库,选择数据库以及列出所有数据库。
- MySQL表类型 – 了解每个表类型的功能至关重要,以便您可以有效地使用它们来最大限度地提高数据库的性能。
- CREATE TABLE – 学习如何使用
CREATE TABLE
语句在数据库中创建新表。 - MySQL序列 – 学习如何使用序列为表的主键列自动生成唯一的数字。
- ALTER TABLE – 学习如何使用
ALTER TABLE
语句来更改现有表的结构。 - 重命名表 – 演示如何使用
RENAME TABLE
语句重命名表。 - 从表中删除列 – 学习如何使用
ALTER TABLE DROP COLUMN
语句从表中删除一个或多个列。 - 向表中添加新列 – 学习如何使用
ALTER TABLE ADD COLUMN
语句向现有表添加一个或多个列。 - 删除表 – 学习如何使用
DROP TABLE
语句删除现有表。 - MySQL临时表 – 讨论MySQL临时表,并学习如何管理临时表。
- TRUNCATE TABLE – 学习如何使用
TRUNCATE TABLE
语句删除表中的所有数据。
第12节. MySQL索引
- 管理MySQL数据库索引 – 学习如何使用MySQL索引,以及如何利用索引来加快数据检索。
- MySQL UNIQUE索引 – 显示如何使用
UNIQUE
索引来强制一个或多个列的值的唯一性。
第13节. MySQL数据类型
- MySQL数据类型 – 学习MySQL中的各种数据类型,以便您可以在设计数据库表时有效应用它们。
- INT – 学习如何使用整数数据类型。并演示如何使用
ZEROFILL
和整数列的宽度属性。 - DECIMAL – 学习如何使用
DECIMAL
数据类型存储十进制格式的精确值。 - BIT – 介绍
BIT
数据类型以及如何在MySQL中存储位值。 - BOOLEAN – 学习MySQL如何通过内部使用
TINYINT(1)
来处理布尔值。 - CHAR – 学习如何使用存储固定长度字符串的
CHAR
数据类型。 - VARCHAR – 提供
VARCHAR
数据类型的基本指南。 - TEXT – 演示如何使用
TEXT
数据类型存储文本数据。 - DATE – 介绍DATE数据类型,并显示一些日期功能来有效处理日期数据。
- TIME – 学习
TIME
数据类型的功能,并向您演示如何使用一些有用的时间功能来处理时间数据。 - DATETIME – 介绍
DATETIME
数据类型和一些有用的函数来操作日期时间值。 - TIMESTAMP – 介绍
TIMESTAMP
类型及其功能,调用自动初始化和自动更新,允许您为表定义自动初始化和自动更新的列。 - JSON格式类型 – 显示如何使用JSON数据类型来存储JSON文档。
- ENUM – 了解如何正确使用
ENUM
数据类型来存储枚举值。
第14节. MySQL约束
- NOT NULL约束 – 引入
NOT NULL
约束,并显示如何为列定义NOT NULL
约束或将NOT NULL
约束添加到现有列。 - 主键约束 – 指导如何使用主键约束来创建表的主键。
- 外键约束 – 学习外键概念,并逐步显示如何创建和删除外键。
- UNIQUE约束 – 显示如何使用
UNIQUE
约束来强制表中列或一组列的值的唯一性。 - CHECK约束 – 通过各种方式来模拟MySQL中的
CHECK
约束。
第15节. MySQL全球化
- MySQL字符集 – 本教程讨论MySQL字符集,并演示如何对字符集执行各种操作。
- MySQL排序规则 – 本教程讨论了MySQL排序规则,并向您展示了如何为MySQL服务器,数据库,表和列设置字符集和排序规则。
第16节. MySQL导入和导出
- 将CSV文件导入MySQL表 – 演示如何使用
LOAD DATA INFILE
语句将CSV文件导入MySQL表。 - MySQL导出表到CSV – 学习如何将MySQL表导出为CSV文件格式的各种技术。
移动端:请扫描本页面底部(右侧)二维码并关注微信公众号,回复:”教程” 选择相关教程阅读
lexapro over the counter purchase fluoxetine sale revia 50mg oral
lasix 40mg brand buy generic ventolin for sale ventolin pill
buy strattera 25mg sale strattera 10mg usa generic sertraline 50mg
buy generic urso buy zyrtec for sale buy zyrtec generic
purchase azithromycin without prescription buy generic zithromax 250mg neurontin 600mg brand
over the counter medication meaning best treatment for excess gas best pill to prevent farting
deltasone online order order amoxicillin online buy generic amoxicillin 250mg
birth control pills free online birth control shipped to door pills to increase sperm volume
promethazine 25mg drug order promethazine 25mg online ivermectin 6mg
what causes erosive gastritis drugs used for arrhythmia uti treatment guidelines for elderly
order cymbalta 20mg generic how to buy provigil provigil 100mg generic
will lamisil kill toenail fungus stopped taking blood pressure medication steve gundry heart surgeoen cbd
buy periactin without a prescription ketoconazole pills nizoral drug
antiviral drugs name expected findings type 2 diabetes safe diet pill for diabetics
provera cost buy hydrochlorothiazide tablets cost hydrochlorothiazide
is nicobloc fda approved buy smoking pills how to buy painkillers online
strongest over the counter sleep aid prescription appetite suppressant buy online get qsymia prescription online
femara order letrozole 2.5mg us abilify 20mg pills
order uroxatral generic strongest anti nausea medication strongest otc heartburn medicine
buy minocycline 100mg sale order ropinirole 1mg generic requip 2mg uk
liquid oral medication for acne best pills for pimples trileptal 300mg cheap
clonidine for sale online order tiotropium bromide 9 mcg online cheap buy generic spiriva online
order calcitriol pills calcitriol over the counter brand tricor 160mg
buy amoxicillin cheap purchase clarithromycin online cheap macrobid sale
buy dissertation online write thesis real casino slot machine games
pay for research papers latin homework help buy suprax 100mg sale
cheap aspirin all free slots play now real money poker online
oral lamisil 250mg online casino for real money luckyland slots
desyrel 50mg uk sildenafil 50mg tablet buy clindac a for sale
buy cheap generic ceftin ceftin 250mg uk brand robaxin 500mg
buy tadacip 20mg pill buy diclofenac pill generic indomethacin 50mg
tamoxifen where to buy buy betahistine 16 mg without prescription buy generic symbicort online
purchase retin online cheap avanafil 100mg pill buy stendra generic
cleocin online order order erythromycin 500mg generic order generic sildenafil 50mg
where can i buy lamotrigine buy generic prazosin order vermox pills
where can i buy metronidazole bactrim 960mg pills buy generic cephalexin 500mg
buy cheap aurogra order estrace 2mg for sale estradiol 2mg generic
buy fluconazole 200mg generic fluconazole buy online ciprofloxacin 1000mg ca
buy term papers online buy custom research paper assignment website
order aldactone 100mg generic purchase aldactone without prescription proscar for sale
tamsulosin ca zocor 20mg cheap buy simvastatin 20mg
domperidone brand buy tetracycline no prescription buy generic sumycin online
ranitidine price buy zantac 300mg generic cost celecoxib
buspar 5mg pills buy amiodarone 100mg generic buy amiodarone 200mg online cheap
buy imitrex cheap dutasteride over the counter dutasteride brand
order zyloprim 100mg generic cheap crestor 20mg crestor canada
buy nexium 40mg pills buy generic esomeprazole 20mg order topiramate 100mg online
astelin 10 ml sprayer order irbesartan 150mg sale order irbesartan 150mg without prescription
pepcid 40mg uk buy cozaar for sale tacrolimus 5mg without prescription
how to buy orlistat order asacol 400mg order diltiazem 180mg sale
buy generic medex buy generic reglan over the counter cost reglan
purchase nortriptyline online pamelor 25 mg cost how to buy paracetamol
order inderal 10mg generic order clopidogrel generic plavix price
buy alendronate 70mg for sale buy generic fosamax oral macrodantin
brand amaryl 4mg order cytotec 200mcg pills buy etoricoxib 120mg pill
Сегодня я наткнулся на сайт caso-slots.com и был приятно удивлен. Здесь собраны все популярные казино и даже есть список тех, где можно получить бонус на первый депозит. Ожидание игры наполняет меня азартом!
order baclofen 10mg for sale order generic toradol 10mg toradol 10mg sale
buy claritin 10mg for sale buy claritin 10mg generic order dapoxetine 60mg pill
purchase ozobax online cheap toradol for sale toradol price
phenytoin medication flexeril oral oxybutynin usa
order aceon pills fexofenadine 180mg sale buy fexofenadine pill
buy levitra sale order tizanidine 2mg pills buy zanaflex online cheap
buy methylprednisolone canada buy adalat pills aristocort 10mg oral
purchase clomid online cheap buy azathioprine 25mg online cheap buy generic azathioprine over the counter
online casino games real money purchase augmentin generic purchase synthroid
Мне недавно понадобилось 17 000 рублей на оплату коммунальных услуг. В ВКонтакте кто-то посоветовал yelbox.ru. На сайте я нашел множество советов о том, как взять займы на карту , и список надежных МФО. Оказывается, некоторые предлагают займы без процентов!
order amantadine online purchase avlosulfon online aczone 100mg usa
poker online cash online casino gambling ivermectin price
online slots real money acticlate order ventolin inhalator for sale
buy protonix 20mg for sale buy generic pyridium for sale brand phenazopyridine
casino games online online gambling real money buy lasix without prescription
azipro 500mg cheap cheap omnacortil generic buy gabapentin 600mg
buy lipitor cheap buy proventil generic buy norvasc generic
buy absorica pill order azithromycin 250mg for sale zithromax 250mg pill
order omnicef 300 mg buy glycomet cheap lansoprazole pills
provigil over the counter prednisone ca prednisone 5mg ca
cenforce online order brand cenforce order chloroquine 250mg online
cialis sales order generic cialis 5mg order viagra 50mg online cheap
buy micardis 80mg pill molnunat 200 mg sale cheap molnunat
how to get prilosec without a prescription cost singulair 5mg order lopressor
premarin 0.625mg uk generic sildenafil buy sildenafil 50mg
betahistine 16mg oral zovirax cost buy benemid 500mg online
buy cheap xalatan exelon 6mg usa buy exelon 6mg online
pill vasotec 5mg doxazosin 1mg sale purchase lactulose for sale
order mestinon 60 mg pills purchase feldene online buy rizatriptan no prescription
ferrous online buy order generic betapace 40 mg buy generic betapace 40mg
buy prasugrel no prescription buy dimenhydrinate online cheap buy cheap tolterodine
buy etodolac 600mg pletal 100 mg drug pletal 100mg without prescription
purchase fludrocortisone generic cheap imodium 2 mg imodium over the counter
cost dydrogesterone 10 mg jardiance 10mg for sale buy empagliflozin 10mg generic
order melatonin sale danocrine 100mg us order generic danazol 100 mg
order dipyridamole generic gemfibrozil 300mg canada order pravachol generic
cost aspirin zovirax over the counter buy zovirax generic
acarbose 25mg generic precose buy online purchase fulvicin generic
order minoxidil online cheap flomax 0.2mg over the counter male ed pills
buy zaditor 1 mg sale purchase imipramine without prescription order tofranil
cialis 10mg usa viagra mail order viagra 100mg usa
buy tricor medication buy tricor 200mg sale tricor without prescription