database - In MySQL on Linux, why does DESCRIBE ORDERS; command return an error saying "Table 'Records.orders' doesn't exists"? -
i created database named "records" in mysql within created table named "old_records" having 5 columns. when give command:
use records; show tables;
it displays table named "old_records" existing in database, after when type command:
describe orders;
it gives following error:
error 1146 (42s02) table 'records.orders' doesn't exists
i new mysql , not able understand cause of error, please help.
you should use
describe old_orders;
you've said orders table not exist, cannot describe
doesn't exist
Comments
Post a Comment