What is the syntax to view structure of table?
From SQLZOO
What is the syntax to view structure of table?
schema:gisq
What is the syntax to view structure of table?
SELECT * FROM syscat.COLUMNS WHERE tabname= 'BBC'
SELECT * FROM all_tab_columns WHERE TABLE_NAME='BBC'
sp_columns @TABLE_NAME=bbc
SHOW COLUMNS FROM bbc
SQLWhat is the syntax to view structure of table?