Answers for "sql show table coloumns"

SQL
1

show table columns

-- MySQL
DESCRIBE tableName;
SHOW COLUMNS FROM tableName;

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

show the colums of table sql

SHOW COLUMNS FROM table_name;

or 

DESCRIBE table_name;
Posted by: Guest on April-23-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language