Assume you want to see the schema of a table named orders in a database named restaurant. Use these commands from the mysql command line:
orders
restaurant
use restaurant; desc orders;
desc orders is the command that shows the schema of the table named orders.
desc orders