SQLite3相当于mysql_num_rows

发布于 2024-11-17 03:21:27 字数 109 浏览 0 评论 0原文

SQLite3 中 mysql_num_rows 的等价物是什么? 我知道 SQLite 有类似的函数调用。我在 PHP 中所做的是在从查询中获取数组并计算变量的同时执行 for 操作,但我不太喜欢它。

What's the equivalent in SQLite3 to mysql_num_rows?
I know SQLite had a similar function call. What I'm doing in PHP is doing a for while fetching an array from the query and counting a variable but I don't like it very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最终幸福 2024-11-24 03:21:27

您有一个更改方法,它将为更新/删除方法提供 num 行/受影响的行功能。对于选择类型查询,您可以对结果集进行计数,或者有效地发出第二个请求来对上一个查询的结果进行计数(这将花费更多的时间给您的应用程序)。
对于“选择名字 = '约翰' 的用户”,这应该看起来像这样:

SELECT count(*) FROM (选择名字 = '约翰' 的用户) as tmp;

但这会花费您额外的查询,并且我很确定计算返回的结果集会更有效。

You have a changes method that will offer the num rows/affected rows functionality for update/delete methods. For select type queries, you can count the result set or effectively make a second request that will count the result of your previous query (will cost more time to your application).
For a "select users where firstname = 'john'" this should look something like this:

SELECT count(*) FROM ( select users where firstname = 'john' ) as tmp;

But it will cost you an extra query and i'm pretty sure that counting the returned result set will be more efficient.

抹茶夏天i‖ 2024-11-24 03:21:27

名为 COUNT 的 SQL 查询怎么样?

What about the SQL-query called COUNT?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文