MySQL基本信息:
1. 配置文件及目录 :/etc/mysql/mysql.conf.d,
2. 用户信息及目录 :/home/用户/.bashrc ===>使用mima命令查看用户信息
一 . MySQLl服务基本操作:
-- MySQL启动 ==> srevice mysql start;
-- MySQL停止 ==> srevice mysql stop;
-- MySQL重启==> srevice mysql restart;
二 . 登录MySQL :
-- 本地连接 :mysql -u用户 -p; 回车后输入密码;
-- 远程连接 :mysql -hIP地址 -P端口 -u用户 -p; 回车后输入密码。
三 . 库的基本操作:
-- 创建库 :create database if not existe database_name;
-- 查看库 :show databases;
-- 使用库 :use database_name;
-- 查看当前使用的库 :select database();
-- 删除库 :create database if existe database_name;