在MySQL数据库中查找字段所属的表

可以通过information_schema库当中的columns表来查找字段所属的表名称

use information_schema;

select * from columns where column_name='NAME';


https://blog.csdn.net/qq_30629571/article/details/72912612

你可能感兴趣的:(在MySQL数据库中查找字段所属的表)