• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

SQL query

kito2

www.masteria.net
Joined
Mar 9, 2009
Messages
3,764
Solutions
1
Reaction score
227
Location
Chile, Santiago
Hi, can someone give me a query that:
- search on z_shop_history_item the account of who bought "x" item (offer_id value) and add "y" points to the acount of the player who bought "x" item.

x,y should be values that I should set.

Can someone help?
 
Last edited:
Code:
SELECT from_account FROM z_shop_history_item WHERE offer_id = x

Code:
UPDATE accounts SET premium_points = premium_points + y WHERE id IN (SELECT from_account FROM z_shop_history_item WHERE offer_id = x)
 
Back
Top