gpt4 book ai didi

mysql - 开始按特定行条件进行查询

转载 作者:行者123 更新时间:2023-11-29 14:31:35 25 4
gpt4 key购买 nike

我有一个 mysql 表,其中列是 post_id 和 post_msg。现在我想从 post_id 列中值为 3 的行开始查询。作为此查询的结果,从 post_id 3 (ASC) 开始的所有行都将成为结果集。我该怎么做?

 post_id | post_msg   
1 | heheh
2 | hi
3 | hello
4 | hoho
5 | hayhay
6 | harhar

从该表中,我想从具有 post_id 且其值为 3 的行开始查询我知道使用 LIMIT 但由于某些原因我的要求实际上是使用 post_id 。这可能吗?

最佳答案

你可以尝试///如果我错了请纠正我

select post_id , post_msg from 
table1 where post_id > = '@post_id_val'
group by post_id ,post_msg
order by post_id

我得到的问题是你想显示 post_id 大于或等于 @post_id_val 的行..以 post_id 升序排列..

关于mysql - 开始按特定行条件进行查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9919398/

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