MySQL基本命令操作
1.登錄方法:
我們提供的服務(wù)有:成都做網(wǎng)站、網(wǎng)站建設(shè)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、閩清ssl等。為數(shù)千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的閩清網(wǎng)站制作公司
mysql -u root -p
2.顯示所有數(shù)據(jù)庫:
show databases;
3.操作指定數(shù)據(jù)庫(以information_schema為例)
use information_schema
4.顯示所有的表
show tables;
5.顯示表結(jié)構(gòu)(以users表為例)
discribe tables;
6.查詢所有數(shù)據(jù)庫的大?。?/p>
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables;
7.查詢指定數(shù)據(jù)庫的大?。ㄒ詚abbix為例):
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='zabbix';
8.查詢指定數(shù)據(jù)庫中所有表的大?。ㄒ詚abbix為例):
SELECT TABLE_NAME,DATA_LENGTH+INDEX_LENGTH,TABLE_ROWS,concat(round((DATA_LENGTH+INDEX_LENGTH)/1024/1024,2), 'MB') as data
FROM information_schema.tables WHERE TABLE_SCHEMA='zabbix' ORDER BY DATA_LENGTH+INDEX_LENGTH desc;
9.查詢指定數(shù)據(jù)庫中指定表的大小(以zabbix數(shù)據(jù)庫的history表為例):
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='zabbix' and table_name='history';``
新聞名稱:關(guān)于Mysql(MariaDB)的基本操作命令指南
URL鏈接:
http://weahome.cn/article/jpdicp.html