Answers for "sql structure table"

SQL
0

table structure in sql

select * from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME='<Table Name>'
Posted by: Guest on April-22-2021
0

table structure in sql

DESCRIBE one;
  OR
DESC one;
Posted by: Guest on April-22-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language