We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24bd30d commit b600c2cCopy full SHA for b600c2c
docs/03_query/02_dql/dataframe.md
@@ -14,7 +14,7 @@ sidebar_position: 3
14
### 查询创建
15
16
```py
17
-d1 = query("select * from daily_quotes.dqf where product_id = 'FG' limit 100")
+d1 = query("select * from klines.future_15m limit 100")
18
return d1
19
```
20
@@ -75,7 +75,7 @@ return d.empty #空的 DataFrame ,返回"True"
75
`query` 返回的数据并非都是完整的数据(最多支持 10000 行),可使用该属性进行判断指示是否还有更多的内容可供处理或迭代:`Type bool`
76
77
78
-data = query("select * from shfe.f_position_ranking")
+data = query("select * from klines.future_15m")
79
return data.has_more #存在更多内容,返回"True"
80
81
0 commit comments