2
(click on this box to dismiss)
how do i list columns from a table
How do I list the columns from a table using a SQL Query?
link
comment (1)
accepted answer
http://www.cubrid.org/questions/237174 -
CUBRID 2 years ago
1
Answer
0
SHOW COLUMNS FROM mytable;
You can also filter the columns based on some condition like:
SHOW COLUMNS FROM mytable WHERE "type" = 'INTEGER';
For more information, see the manual http://www.cubrid.org/manual/840/en/SHOW%20COLUMN%20Statement.
tagged
asked 2 years ago
viewed 598 times