在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语句?
答案 0 :(得分:1)
请注意,您刚刚在此处列出了select
语句的元素。
文档列出了SQL statements DolphinDB supports,并在其中明确说明了delete
。