Mysql 一些常用語句

2021-10-24 16:52:36 字數 1050 閱讀 9129

mysqldump  -u root -p anclgk > tmp.sql   #匯出為sql

mysql -uroot -p123456 < tmp.sql             #匯入

mysql> use abc;                      # 使用已建立的資料庫 

mysql> set names utf8;           # 設定編碼

mysql> source /home/abc/abc.sql  # 匯入備份資料庫

select concat('drop table if exists ', table_name, ';')

from information_schema.tables

where table_schema = 'databasename';

select  engine,  

round(sum(data_length) /1024/1024, 1) as 'data mb',  

round(sum(index_length)/1024/1024, 1) as 'index mb',  

round(sum(data_length + index_length)/1024/1024, 1) as 'total mb',  

count(*) 'num tables'  

from  information_schema.tables  

where  table_schema not in ("information_schema", "performance_schema")  

group by  engine; 

show global status like 'open%tables%'; #opened_tables數值非常大,說明cache太小,導致要頻繁地open table,可以檢視下當前的

show variables like '%table_open_cache%';#檢視下當前的table_open_cache設定

set global table_open_cache=512;#設定table_open_cache設定

mysql一些常用語句 mysql一些常用語句

一 從命令列登入mysql資料庫伺服器 1 登入使用預設3306埠的mysql usr local mysql bin mysql u root p 2 通過tcp連線管理不同埠的多個mysql 注意 mysql4.1以上版本才有此項功能 usr local mysql bin mysql u ro...

mysql常用語句 MySQL常用語句

create table student id int primary key auto increment comment 學號 name varchar 200 comment 姓名 age int comment 年齡 comment 學生資訊 修改表注釋 alter table studen...

matlab小白一些常用語句

1 clear清除workspace clc清除命令視窗 clf清除圖形視窗 2 load 載入資料檔案 3 meshgrid函式生成網格矩陣,可用於將向量轉變為矩陣。生成二維網格,用法為 x y meshgrid a b a 和b是一維陣列,如a 1 2 3 b 2 3 4 則生成的 x 和 y ...