2014年04月06日 13:44:56
MySQL搜索字段名所在的表名
搜索字段名为message
的表名
select table_name from information_schema.columns where column_name = 'message'
搜索表所有字段
select column_name from information_schema.columns where table_name='tb_messages'
注:information_schema是很重要的一个数据库