mysql查数据库大小命令

SELECT
	concat( round( sum( data_length / 1024 / 1024 ), 2 ), 'MB' ) AS data
FROM
	information_schema.TABLES 
WHERE
	table_schema = 'kd_qpi_20191016';