gpt4 book ai didi

php - 如何在多个表上使用 FOUND_ROWS()

转载 作者:行者123 更新时间:2023-11-29 07:38:19 25 4
gpt4 key购买 nike

我有以下查询,执行时没有错误,但它没有返回正确的行数。当从一个表中选择而不是两个表时,相同的查询有效:

SELECT FOUND_ROWS() as `total` 
FROM `products` t1
RIGHT JOIN `homepage` t2 ON `t2`.id = `t1`.id;

最佳答案

要获取行数,请执行以下操作:

SELECT COUNT(*) as `total` 
FROM `products` t1
RIGHT JOIN `homepage` t2
ON `t2`.id = `t1`.id;

关于php - 如何在多个表上使用 FOUND_ROWS(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29942723/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com