I am accessing mysql from cmd, and I want to get all rows from a specific table, but I can't find the exact command to do so.
Example:
SHOW DATABSES #shows all available databases;
CONNECT TEST_DB #I connect to test_db
SHOW TABLES #shows all tables.
What Is missing is how to only see the columns from a specific table.
if I do SELECT * FROM table_test it displays all results instead of just the columns
DESCRIBE table_test?