dolphindb支持哪些SQL语句?

时间:2019-06-28 08:56:28

标签: sql syntax dolphindb

在dolphindb手册中,它支持选择,插入和更新语句:

select [top_clause] column_expressions
from table_name | table_expression
[where filter_conditions]
[grouping_clause [having_clause] | order_clause]

事实上,我发现它还支持删除:

delete from table_name where condition(s);

那么,Dolphindb还支持哪些其他SQL语句?

1 个答案:

答案 0 :(得分:1)

请注意,您刚刚在此处列出了select语句的元素。

文档列出了SQL statements DolphinDB supports,并在其中明确说明了delete