In Oracle, we can give like desc table_name, but as I am using the Netezza, so I couldn't get the description of the tables. If anyone knows please let me know.
Asked
Active
Viewed 1.2k times
2 Answers
5
Right click on Table in Object Browser --> Script --> DDL to query Window
There is another nzsql command : \d <TABLE_NAME>
The nzsql commands apply only if you use command line (eg:putty). Not on Aginity.

Leo
- 868
- 1
- 13
- 32
0
Here is a metadata query to give the structure of tables and views. There is one row per column, and it describes the data types.
SELECT *
FROM _v_relation_column

Andrew
- 1,619
- 3
- 19
- 24