Link to home
Start Free TrialLog in
Avatar of allelopath
allelopath

asked on

show table status return empty set

Below, the show table status returns an empty set when I think it shouldn't
Can anyone explain?

mysql> use mydb
Database changed
mysql> show tables;
+---------------------+
| Tables_in_mydb |
+---------------------+
| loans_table         |
+---------------------+
1 row in set (0.03 sec)

mysql> show table status;
Empty set (0.06 sec)

mysql> show table status from mydb;
Empty set (0.00 sec)
ASKER CERTIFIED SOLUTION
Avatar of Aleksandar Bradarić
Aleksandar Bradarić
Flag of Serbia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of allelopath
allelopath

ASKER

I was seeing other funny things, so I ended up just deleted everything and starting over (No big deal, still very much in the experimental phase). but thanks for your response.