ลองแบบนี้ได้มั๊ยครับ
sql = "select * from TableA where nubonly='4' and status in ('พ')";
หรือ
sql = "select * from TableA where nubonly='4' and status not in ('พ')";
เมื่อคุณรู้ว่า id เท่ากับ 54 ก็ใช้ id ให้เป็นประโยชน์ เพราะมันถูกเรียงลำดับมาแล้ว
Code (SQL)
select * from TableA
where id<54 #เมื่อต้องการ ก่อน id 54
and status<>'พ' #เมื่อต้องการไม่ใช่ 'พ' การใช้ not in (array) เหมาะกับ หลาย element แต่ถ้า ตัว 2 ตัว ใช้ and or = <> ไปตรงๆ
order by id desc #ค้นหามาแสดงตามลำดับไล่จากหลังมาหน้า