im trying to update my results and i get error:
this is the code:
if i do LIMIT 50 ,it's working ,when im puting 0, 50 ,i get error!
i need update the results from the first 50 rows.
what can be the error
this is the code:
Code:
this is the select : SELECT * FROM `bidding_details` where `bid_id`='$bid_id' and `sortbid` = '1' order by bid_price asc limit 0, 50 this is the update:" update bidding_details set sortbid = '0', rank = '0' where `bid_id`='$bid_id' and sortbid = '1' and `bid_price`='$remove_bid' LIMIT 0, 50
i need update the results from the first 50 rows.
what can be the error
Comment