【2020Python修炼记】MySQL之 库相关操作
【目录】
一 系统数据库
二 创建数据库
三 数据库相关操作
一 系统数据库
查看语法:show databases;
information_schema: 虚拟库,不占用磁盘空间,存储的是数据库启动后的一些参数,如用户表信息、列信息、权限信息、字符信息等
performance_schema: MySQL 5.5开始新增一个数据库,主要用于收集数据库服务器性能参数,记录处理查询请求时发生的各种事件、锁等现象
mysql: 授权库,主要存储系统用户的权限信息
test: MySQL数据库系统自动创建的测试数据库
二 创建数据库
1 语法(create database)
# 方法一:
create database
数据库名 charset utf8mb4;
# 方法二:先不链接mysql服务端,直接使用管理员身份建数据库
C:\WINDOWS\system32>mysqladmin -u root -p create 数据库名;
C:\WINDOWS\system32>mysqladmin -u root -p create db914; Enter password: *** C:\WINDOWS\system32>mysql -u root -p Enter password: *** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 5 Server version: 5.6.48 MySQL Community Server (GPL) Copyright (c) 2000, 2020, 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> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | bms_info | | db907p | | db914; | | dbp1 | | mysql | | performance_schema | | test | +--------------------+ 8 rows in set (0.01 sec)
2 数据库命名规则:
可以由字母、数字、下划线、@、#、$
区分大小写
唯一性
不能使用关键字如 create select
不能单独使用数字
最长128位
三 数据库相关操作
1 查看数据库 show databases; show create database 数据库名; select database(); 2 选择使用数据库 use 数据库名 3 删除数据库 drop database 数据库名; 4 修改数据库(数据库名是不能修改的,可以修改其编码格式) alter database 数据库名 charset utf8mb4; # 统一编码格式后,就无需指定了
使用管理员身份操作数据库:
-删除数据库--》mysqladmin -u root -p drop 数据库名;
-创建数据库(见上部分-创建数据库)
参考:https://www.cnblogs.com/linhaifeng/articles/7211690.html
🐱不负韶华,只争朝夕🍚