select id, game_id, item_name, item_multiple, item_location, lottery_count, consecutive from app_game_item
insert into app_game_item
game_id,item_name,item_multiple,item_location,#{lottery_count},#{consecutive},#{gameId},#{itemName},#{itemMultiple},#{itemLocation},#{lotteryCount},#{consecutive},
update app_game_item
game_id = #{gameId},item_name = #{itemName},item_multiple = #{itemMultiple},item_location = #{itemLocation},lottery_count = #{lotteryCount},consecutive = #{consecutive},
where id = #{id}
delete from app_game_item where id = #{id}
delete from app_game_item where id in
#{id}
update app_game_item set lottery_count = lottery_count + 1
where game_id = #{gameId} and item_location = #{itemLocation}
update app_game_item set consecutive = consecutive + 1
where game_id = #{gameId} and item_location = #{itemLocation} and consecutive < #{consecutive}