Answers for "show columns for a table in databse"

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 "SQL"

Browse Popular Code Answers by Language