MySQL获取数据库表定义

获取表定义信息

select * from information_schema.tables;

获取表字段定义信息

select * from information_schema.columns;