Mysql常用命令

2021-08-27 13:06:34 字數 1753 閱讀 1388

一、資料庫的匯入匯出 1

、匯出某資料庫:

mysqldump -h 192.168.1.5 -u root -p database_name > file_name

./mysqldump -uroot -p weatherplus >weatherplus_2013-04-12_bak.sql

[root@liangy local]# cd mysql

[root@liangy mysql]# cd bin

[root@liangy bin]# ./mysql

welcome to the mysql monitor.  commands end with ; or \g.

your mysql connection id is 1485 to server version: 5.0.26-standard-log

type 'help;' or '\h' for help. type '\c' to clear the buffer.

mysql> source /usr/local/weather.sql;

2、匯出某資料庫結構(只有資料結構,沒有資料):

mysqldump -h 192.168.1.5 -u root -p -d --add-drop-table database_name > file_name

(-d

沒有資料

--add-drop-table

在每個create

語句之前增加乙個

drop table)

3、匯出某錶:

mysqldump -h 192.168.1.5 -u root -p database_name table_name1 talbe_name2... > file_name

4、匯入某資料庫:

mysql -h 192.168.1.10 -u root -p

create database database_name;

use database_name;

source file_name;

5、匯入某錶:

mysql -h 192.168.1.10 -u root -p

use database_name;

source file_name;

二、檢視資料庫大小

要想知道每個資料庫的大小的話,步驟如下: 1

、進入information_schema

資料庫(存放了其他的資料庫的資訊)

use information_schema;

2、查詢所有資料的大小:

select concat(round(sum(data_length/1024/1024),2),'mb') as data from tables;

3、檢視指定資料庫的大小:

比如檢視資料庫

home

的大小

select concat(round(sum(data_length/1024/1024),2),'mb') as data from tables where table_schema='home';

4、檢視指定資料庫的某個表的大小

比如檢視資料庫

home

中members

表的大小

select concat(round(sum(data_length/1024/1024),2),'mb') as data from tables where table_schema='home' and table_name='members';

mysql基本常用命令 MySQL常用命令(一)

cmd提示框中的mysql基礎命令 一 命令 連線mysql伺服器 mysql h localhost u root p 展示所有資料庫 show databases 選擇資料庫 use database 展示所選資料下所有表 show tables 設定資料庫編碼 set names gbk 用s...

mysql巡檢常用命令 mysql 常用命令

客戶端連線 進入命令列,windows cmd,連線 mysql u 使用者名稱 p密碼 h 伺服器ip位址 p 伺服器端mysql埠號 d 資料庫名 注意 1 伺服器端口標誌 p一定要大些以區別於使用者 p,如果直接連線資料庫標誌 d也要大寫 2 如果要直接輸入密碼 p後面不能留有空格如 pmyp...

mysql常用命令總結 mySql常用命令總結

總結一下自己常用的mysql資料庫的常用命令 mysql u root p 進入mysql bin目錄後執行,回車後輸入密碼連線。資料庫操作 1 create database dbname 建立資料庫,資料庫名為dbname 2 create database todo default chara...