local group_sql = string.format("select top 6 * from Custom11 Where Custom7 > '%s' Order By Custom7 asc ",_time) local group_query = proxy:ExecSQL(group_sql) if group_query ~= nil and group_query.state == 'success' then if group_query.rows ~= nil then for _,row_group in ipairs(group_query.rows) do 获取group_sql 查询到的数据返回个数
时间: 2024-01-28 13:04:26 浏览: 258
您可以使用`#`操作符来获取Lua表中的元素数量,以获取`group_query.rows`中的数据返回个数。以下是一个示例代码:
```lua
local dataCount = #group_query.rows
```
在这个示例中,`#group_query.rows`会返回`group_query.rows`表中的元素数量,即数据返回个数。您可以将其存储在`dataCount`变量中以供后续使用。请注意,这个代码片段是基于您提供的代码和问题的推测,具体实现可能需要根据您的需求进行适当调整。
阅读全文