ai didi

php - 当我向其中添加 LIMIT 关键字时,SQL 不工作

转载 作者:行者123 更新时间:2023-11-30 23:44:22 24 4
gpt4 key购买 nike

无法让我的 SQL LIMIT 工作:

$sql = mysqli_query($conn, "SELECT url, code, count FROM zipit WHERE uid='".$uid."' LIMIT '".$this_page_first_result."','".$results_per_page."'");

最佳答案

您编写查询的方式转化为:

SELECT url , 
code ,
count
FROM zipit
WHERE uid='uid1234'
LIMIT '123','50'

单引号对您的 LIMIT 无效条款。 . .

你应该使用的是:

$sql = mysqli_query($conn,"SELECT url,code,count 
FROM zipit
WHERE uid='".$uid."'
LIMIT ".$this_page_first_result.",".$results_per_page);

LIMIT takes one or two numeric arguments, which must both be nonnegative integer constants, with these exceptions:

Within prepared statements, LIMIT parameters can be specified using ? placeholder markers.

Within stored programs, LIMIT parameters can be specified using integer-valued routine parameters or local variables.

With two arguments, the first argument specifies the offset of the first row to return, and the second specifies the maximum number of rows to return. The offset of the initial row is 0 (not 1)

关于php - 当我向其中添加 LIMIT 关键字时,SQL 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49354951/

24 4 0
文章推荐: Javascript Checkbox.OnChange 事件未正确触发
文章推荐: python - 我是否需要数据库 View ?
文章推荐: jquery - 窗口加载事件在带有缓存的文档就绪事件之前触发
文章推荐: javascript - jQuery 与 GQuery 基准测试
行者123
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
全站热门文章
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com