Answers for "how to display all column from a table"

SQL
1

show table columns

-- MySQL
DESCRIBE tableName;
SHOW COLUMNS FROM tableName;

-- SQLite3
.schema tableName
Posted by: Guest on May-11-2021

Code answers related to "how to display all column from a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language