我一直在谷歌搜索和搜索这个网站,但无法找到这个简单问题的答案。
如何在Teradata中列出或选择表格的所有列?
答案 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
可以提供更多答案。