美文网首页
MySQL学习记录

MySQL学习记录

作者: 刘小小gogo | 来源:发表于2020-06-22 16:56 被阅读0次

Databases are everywhere. So what is a database? By definition, a database is merely a structured collection of data.
【关系型数据库】
The data relating to each other by nature, e.g., a product belonged to a product category and associated with multiple tags. Therefore, we use the term relational database.

In the relational database, we model data like products, categories, tags, etc., using tables. A table contains columns and rows. It is like a spreadsheet.

【SQL】
SQL – the language of the relational database
SQL stands for the structured query language

SQL contains three parts:

  1. Data definition language includes statements that help you define the database and its objects, e.g., tables, views, triggers, stored procedures, etc.
  2. Data manipulation language contains statements that allow you to update and query data.
  3. Data control language allows you to grant the permissions to a user to access specific data in the database.

【What is MySQL】
My is the daughter’s name of the MySQL’s co-founder, Monty Widenius.

相关文章

  • MySql学习(一)基础框架 一条SQL查询语句如何执行的?

    学习《MySQL实战45讲》- 林晓斌,做的笔记和记录,记录、总计、思考。 目录: MySql基础架构(Serve...

  • 前言

    这里记录学习mysql的经历,以便以后回顾

  • MySql学习记录

    MySql的配置: 字符集配置 修改/etc/my.cnf,在[mysqld]节点下default-charact...

  • mysql 学习记录

    一、在 MySQL 客户端输入以下命令: show global variables like "%datadir...

  • MySQL学习记录

    Databases are everywhere. So what is a database? By defi...

  • MySQL学习记录

    MySQL 下载与安装配置 也可去MySQL官网去找相应的msi后缀的下载名,那个不用手动配置,有指引配置项 My...

  • mysql 学习记录

    mysql 学习记录 二、基本命令 2.1设置数据库区分大小写 数据库大小写设置参数lower_case_tabl...

  • mySQL学习记录

    基础知识: 数据库:存储数据的仓库,本质是一个文件系统,数据库按照特定的格式将数据存储起来。常用数据库:MySQL...

  • 1. 基本查询语句回顾

    本文章将记录学习mysql过程中的学习笔记工具:Sequel Pro , MySql for mac 简单查询 2...

  • MySQL基础笔记(1)

    基于Windows下的MySQL学习记录 01.进入MySQL 安装好MySQL后,打开cmd命令提示符窗口,输入...

网友评论

      本文标题:MySQL学习记录

      本文链接:https://www.haomeiwen.com/subject/igtffktx.html