如何在Teradata SQL中列出表的列

时间:2018-02-27 16:45:53

标签: sql teradata

我一直在谷歌搜索和搜索这个网站,但无法找到这个简单问题的答案。

如何在Teradata中列出或选择表格的所有列?

1 个答案:

答案 0 :(得分:5)

不同的可能性

Help table <TableName> -- All columns of a table 
Help columns  <ViewName>.* -- All columns of a View
Show table <TableName> -- DDL of table
Show view <ViewName> -- DDL of View
show select * from  <ViewName>-- DDL of base table in a view

或从系统表中选择。

SELECT ColumnName 
FROM dbc.columnsV
WHERE DatabaseName = 'DB_NAME' and
TableName = 'table_name';

搜索teradata column name list可以提供更多答案。