有时候自己写工具需要从远程数据库中获得各种表信息,这样首先就要取得数据字典
列一下mysql的获取方式
use information_schema; select schema_name from schemata; select table_name from tables where table_schema='information_schema' order by table_name;
1.首先use一下information_schema
2.从schemata表中获取出可用的schema_name
3.根据schema_name从tables表中获取到各个table的名称