你好! 这是我自己编辑的一些知识点。如果你想学习MySQL数据库的有关知识, 可以仔细阅读这篇文章,了解一下关于MySQL数据库的基本语法知识。
数据库(DataBase),简称DB,按照一定格式存储数据的一些文件的组合。
数据库管理系统(DataBaseManagement),简称DBMS,数据库管理系统是专门来管理数据库中数据的,数据库管理系统可以对数据库当中的数据进行增删改查。
常见的数据库管理系统:MySQL、oracle、Ms SqlServer、DB2、Sybase等…
SQL:结构化查询语言
程序员编写SQL语句,DBMS负责执行SQL,进行增删改查。
**三者关系:**DBMS – 执行 – > SQL – 操作 – > DB
名称 | 描述 | 例 |
---|---|---|
DQL | 数据查询语言(凡是带有select关键字的都是查询语句) | select… |
DML | 数据操作语言(凡是对表当中的数据进行增删改查的都是DML) | insert增、delete删、update改 |
DDL | 数据定义语言(主要操作的是表的结构) | create新建、alter修改、drop删除 |
TCL | 事务控制语言 | conmit事务提交、rollback事务回滚 |
DCL | 事务控制语言 | grant授权、revoke撤销权限 |
MySQL卸载时:
1.点击安装包进行卸载删除
2.删除目录与隐藏目录:
- C:\ProgramData\MySQL
- C:\Program Files (x86)\MySQL
net stop 服务名称; net start 服务名称;
C:\Users\薯片>mysql -uroot -p111111 mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.7.26 MySQL Community Server (GPL) Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> exit Bye
注意:
select version();
mysql> select version(); +-----------+ | version() | +-----------+ | 8.0.22 | +-----------+ 1 row in set (0.03 sec)
select database();
mysql> select database(); +------------+ | database() | +------------+ | text | +------------+ 1 row in set (0.00 sec)
show databases;
结尾时为英文状态下的(