PDO:rowCount() 和 SQL COUNT(col) 之间的区别

发布于 2024-10-22 05:51:26 字数 119 浏览 3 评论 0原文

我只是想知道使用 PDO 类 rowCount 方法而不是 SQL COUNT(col_name) 来计算行数是否更好。

每种情况是否都存在一些推荐的情况?

I just wonder to know if is better to use PDO class rowCount method instead of SQL COUNT(col_name) to count the number of rows.

Does exist some recommended situation for each one?

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

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

发布评论

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

评论(2

橘虞初梦 2024-10-29 05:51:26

一大区别? rowCount 手册页上的免责声明:

如果关联的 PDOStatement 执行的最后一个 SQL 语句是 SELECT 语句,某些数据库可能会返回该语句返回的行数。但是,不能保证所有数据库都具有此行为,并且不应依赖于可移植应用程序。

添加了强调。

如果您需要数据库中匹配的记录数,请使用 COUNT()。如果您需要数据库驱动程序认为它返回给您的行数/支持该概念的数据库驱动程序中受影响的行数,则使用 PDO 的 rowCount,但您不能保证数据将在那里,具体取决于底层数据库驱动程序。

One big difference? This disclaimer on the rowCount manual page:

If the last SQL statement executed by the associated PDOStatement was a SELECT statement, some databases may return the number of rows returned by that statement. However, this behaviour is not guaranteed for all databases and should not be relied on for portable applications.

Emphasis added.

If you need the number of records in the database that match, use COUNT(). If you need the number of rows that the database driver believes it's returning to you / the number of affected rows in the database drivers that support that concept, then use PDO's rowCount, but you can't guarantee that data will be there, depending on the underlying database driver.

怪我鬧 2024-10-29 05:51:26

我会推荐 rowCount 因为它是在驱动程序中实现的。 COUNT() 要求 mysql 做额外的工作,这在您的实例中可能会或可能不会出现问题。

I would recommend rowCount because it's implemented in the driver. COUNT() requires mysql do additional work which may or may not be a problem in your instance.

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