Hi Krishna,
sure, this is the SQLScript of the table I set up for testing.
The columns: CreatedAt, CreatedTime and CreatedTimesstamp have different time and date types but will be displayed as "text" columns with 255 characters.
table.schemaName = "XXXX";
table.tableType = COLUMNSTORE;
table.description = "TEST table";
table.columns = [
{name = "OrderID"; sqlType = NVARCHAR; nullable = false; length = 10; },
{name = "CreatedAt"; sqlType = DATE; nullable = true;},
{name = "CreatedTime"; sqlType = TIME; nullable = true;},
{name = "CreatedTimeStamp"; sqlType = TIMESTAMP; nullable = true;},
{name = "Currency"; sqlType = NVARCHAR; nullable = false; length = 5;},
{name = "GrossAmount"; sqlType = DECIMAL; nullable = false;
precision = 15; scale = 2; defaultValue = "0";}
];
table.primaryKey.pkcolumns = ["OrderID"];
Thanks
Daniel