'Teradata - Column datatypes not copied for views

I am trying to create view from table as below

CREATE TABLE tb
(
  a INTEGER,
  b INTEGER
)

CREATE VIEW vtb AS
(SELECT *
 FROM tb);

And then when I executed the following command the type of the column is null

help view vtb;

enter image description here

Is there a way to copy the column datatypes while creating the view ?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source