mysql常用操作 資料庫的備份和恢復

2021-04-16 04:52:16 字數 824 閱讀 2394

測試空間

旗下大頭針

出品

mysql資料庫的備份和恢復:

1.以root使用者來備份mysql資料庫,備份到c:/mysql.sql檔案中

mysqldump -uroot -p mysql > c:/mysql.sql

enter password:

(提示輸入root密碼,因為是空密碼所以就不用輸入了)

2.然後以root登入mysql,

檢視一下mysql資料庫中常用的一張表user表

select user from mysql.user

+------+

| user |

+------+

| root |

+------+

3.對於這張表作一下修改,增加了兩個使用者:

grant all privileges on *.* to test@localhost identified by '123';

grant all privileges on *.* to test1@localhost identified by '123';

檢視下表的變化:

select user from mysql.user

+-------+

| user  |

+-------+

| root  |

| test  |

| test1 |

+-------+

4.恢復mysql資料庫

輸入exit退出mysql後:輸入以下命令

mysql -u root mysql

MySQL資料庫基本操作(資料庫操作一)

1 命令 行登入語法 mysql u使用者名稱 h主機名或者ip位址 p密碼 登入到本機 mysql h localhost u root p密碼 檢視當前使用者的許可權 show grants 2 建立資料庫 1 create database database name database nam...

mysql表操作 資料庫表的操作!

這些是資料庫簡單的操作,大家可以看看。設計表時需要確定如下專案 1 表的名稱。2 表中每一列的名稱。3 表中每一列的資料型別和長度。4 表中的列中是否允許空值 是否唯 一 是否要進行預設設定或新增使用者定義約束。5 表中需要的索引的型別和需要建立索引的列。6 表間的關係,即確定哪些列是主鍵,哪些是外...

MySQL基本操作 資料庫和表

資料庫的操作 mysql中,資料庫的基本操作有 建立 檢視 選擇以及刪除4種。mysql表的操作 建立表語法 create table table name column name,column type example create table if not exists runoob tbl r...