我正在为PayPal开发IPN,我需要知道如何选择卖出的特定数量的行='false'
答案 0 :(得分:1)
以下内容应该有效:
SELECT * FROM your_table WHERE sold='false' LIMIT 10
希望这有帮助!
答案 1 :(得分:0)
select * from table where sold='false' limit 10
OR
select * from table where sold='false' limit M,N
此查询提取数据从第M行开始到N条记录
答案 2 :(得分:0)
select top 10 * from table where sold='false'