1. select schema_name from information_schema.schemata -- 查库
    2. select table_name from information_schema.tables where table_schema='' -- 查表
    3. select column_name from information_schema.columns where table_name='' -- 查列
    4. select * from 库名.表名;

    image.png