You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create table stock_ticker (stock_symbol string, closing_price decimal(8,2), closing_date timestamp);
...load some data...
select * from stock_ticker order by stock_symbol, closing_date
In the table building statement" closing_date timestamp",doris' data type does not support timestamp.
May mislead users.
The text was updated successfully, but these errors were encountered:
The test data can be used as the following examples:
”
create table stock_ticker
(
closing_date dateTime,
stock_symbol string,
closing_price decimal(10, 0)
) duplicate key(closing_date)
distributed by hash(closing_date) buckets 1
properties
(
"replication_num"="1"
);
Path:/zh-CN/docs/sql-manual/sql-functions/window-functions/window-function
create table stock_ticker (stock_symbol string, closing_price decimal(8,2), closing_date timestamp);
...load some data...
select * from stock_ticker order by stock_symbol, closing_date
In the table building statement" closing_date timestamp",doris' data type does not support timestamp.
May mislead users.
The text was updated successfully, but these errors were encountered: