Answers for "mysql check table usage"

SQL
1

mysql check table exists

SELECT *  FROM information_schema WHERE TABLE_NAME = "my_table"
Posted by: Guest on May-15-2021
0

how to check which table has data in mysql

mysql> SELECT table_name, table_rows
   ->FROM INFORMATION_SCHEMA.TABLES
   ->WHERE TABLE_SCHEMA = 'business';
Posted by: Guest on May-20-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language