search column by name mysql

Solutions on MaxInterview for search column by name mysql by the best coders in the world

showing results for - "search column by name mysql"
Lysander
06 Jun 2018
1select table_name, column_name 
2from information_schema.columns 
3where column_name like '%search_keyword%'; -- change search_keyword accordingly
4