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= 'CIA'
SELECT * FROM all_tab_columns WHERE TABLE_NAME='CIA'
sp_columns @TABLE_NAME=cia
SHOW COLUMNS FROM gisq.cia
SQLWhat is the syntax to view structure of table?