mysql資料庫常用命令和方法

2021-06-20 23:35:58 字數 464 閱讀 6160

1.匯出資料庫(sql指令碼)  

mysqldump -h 'ip位址' -u'使用者名稱' -p'密碼' 資料庫名 > 匯出的檔名

2.匯入資料庫(sql指令碼)

mysql shell環境:  

source ios.sql;

shell環境:

mysql-h 'ip位址' -u'使用者名稱' -p'密碼' 資料庫名

< 資料庫名.sql

3. 建立

create database release2;

4. 刪除資料庫

drop database release2;

5.檢視表大小

use information_schema;

select table_name,data_length+index_length,table_rows from tables where table_schema='資料庫名' ;

MySQL 資料庫常用命令

1 mysql常用命令 create database name 建立資料庫 use databasename 選擇資料庫 drop database name 直接刪除資料庫,不提醒 show tables 顯示表 describe tablename 表的詳細描述 select 中加上disti...

MySQL 資料庫常用命令

1 mysql常用命令 create database name 建立資料庫 use databasename 選擇資料庫 drop database name 直接刪除資料庫,不提醒 show tables 顯示表 describe tablename 表的詳細描述 select 中加上disti...

MySQL資料庫常用命令

連線命令 mysql h 主機位址 u 使用者名稱 p 使用者密碼 建立資料庫 create database 庫名 顯示所有資料庫 show databases 開啟資料庫 use 庫名 建立資料表 create table 表名 欄位名 字段型別 字段引數 顯示資料表字段 desc 表名 當前庫...