I've been working on a table inside a database, and now I cannot seem to access it. It says that the table "doesn't exist." Any help would be appreciated. Here are steps I'm taking to try and access it.
Ajay-Rameshs-iMac:~ ajay$ mysql -u root -pmypassword SOUsers
mysql> show tables;
+-------------------+
| Tables_in_sousers |
+-------------------+
| userData |
+-------------------+
1 row in set (0.00 sec)
mysql> select * from userData;
ERROR 1146 (42S02): Table 'sousers.userdata' doesn't exist
Any help would be much appreciated! In case it's important, I'm running this on OSX Lion Terminal.
Thanks!
~Carpetfizz