Answers for "mysql table name only get using mysql query"

SQL
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
0

mysql to get column name in database

SELECT table_name, column_name from information_schema.columns WHERE column_name LIKE '%column_name_to_search%';
Posted by: Guest on October-30-2020

Code answers related to "mysql table name only get using mysql query"

Code answers related to "SQL"

Browse Popular Code Answers by Language