如何从 PHP 中的 SQL 查询中获取一个值?
如何使用 php 获取此查询的第一个结果?我想要当列表按降序排列时返回的第一个结果。
$sql2 = "SELECT orderID FROM orders WHERE 'customerID' = '".$_SESSION['accountID']."' ORDER BY
'orderID' DESC";
$lastorder = mysqli_query($sql2);
谢谢!
How do I get the first result of this query using php? I want the first result that is returned when the list is in descending order.
$sql2 = "SELECT orderID FROM orders WHERE 'customerID' = '".$_SESSION['accountID']."' ORDER BY
'orderID' DESC";
$lastorder = mysqli_query($sql2);
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需将
LIMIT 1
添加到 SQL 末尾Simply add
LIMIT 1
to the end of your SQL使用
LIMIT
:Use
LIMIT
:查询:
如果 customerID 是数字,则可以删除单引号以进行查询:
然后...
The query:
If customerID is a number then the single quotes can be removed to make the query:
Then...