Is there a command in the MySQL command line client for windows that allows you to view all tables in a database, or display the schema of a particular table, similar to .tables in sqlite3 or \dt in psql?
Is there a command in the MySQL command line client for windows that allows
Share
[misread]
You’re looking for
SHOW TABLESit sounds like.To see the schema of a table, use
DESCRIBE table_name;