Habib Posted January 27, 2011 Posted January 27, 2011 i try to make sql script to delete items from items.sql if count>5000 and to set it to 1000 but all time i get error any one can help me ? my code is : DELETE FROM items WHERE item_Id=5535 IF count>5000 SET count =1000
0 mogo Posted January 27, 2011 Posted January 27, 2011 Don't delete, just update. UPDATE items SET count = 1000 WHERE item_Id = 5535 AND count > 5000
Question
Habib
i try to make sql script to delete items from items.sql if count>5000 and to set it to 1000 but all time i get error
any one can help me ?
my code is :
DELETE FROM items WHERE item_Id=5535 IF count>5000 SET count =1000
1 answer to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now