Teradata dbc.columns:为什么ColumnFormat列与表DDL的列定义不同?

时间:2013-01-25 14:46:25

标签: teradata

我运行这个SQL:

select * from dbc.columns
where
    databasename = 'mydb' and
    tablename = 'mytable' and
    columntype = 'ts' and
    1=1
order by tablename;

该列是时间戳(6),其ColumnFormat列返回yyyy-mm-dd hh:mm:ss.s(6)。但是,当我使用show table mydb.mytable查看DDL时,列的列格式显示为yyyy-mm-ddbhh:mi:ss.s(6)。注意分钟格式字符串。 dbc视图显示mm,而表DDL显示mi。那是什么?

0 个答案:

没有答案