Answers for "find by name in mysql table"

SQL
4

search column by name mysql

select table_name, column_name 
from information_schema.columns 
where column_name like '%search_keyword%'; -- change search_keyword accordingly
Posted by: Guest on June-16-2021
2

mysql find tables with name

SELECT table_name 
FROM information_schema.tables 
WHERE table_type = 'base table' AND table_name like '%YOUR TABLE NAME%';
Posted by: Guest on May-28-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language