Published
- 1 min read
mysql find tables with name
The solution for this is noted below
mysql find tables with name
Solution
SELECT table_name
FROM information_schema.tables
WHERE table_type = 'base table' AND table_name like '%YOUR TABLE NAME%';
Try other methods by searching on the site. That is if this doesn’t work