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

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -