Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

mysql find tables with name

SELECT table_name 
FROM information_schema.tables 
WHERE table_type = 'base table' AND table_name like '%YOUR TABLE NAME%';
 
PREVIOUS NEXT
Tagged: #mysql #find #tables
ADD COMMENT
Topic
Name
6+2 =