Viewing All Columns in a Specified Table
Function
This statement is used to query all columns in a specified table.
Syntax
1 | SHOW COLUMNS {FROM | IN} table_name [{FROM | IN} db_name];
|
Keyword
FROM/IN: Displays the column names of tables in a specified database. Keyword FROM is equivalent to IN. You can use either of them in the statement.
Precautions
The specified table must exist in the database. If the table does not exist, an error is reported.
Example
Run the following statement to view all columns in the student table.
1 | SHOW COLUMNS IN student;
|
Last Article: Viewing Table Properties
Next Article: Viewing All Partitions in a Specified Table
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.