/** 分享过用户增加 2次参与游戏时间 */ UPDATE `awards_user_info` SET `count` = `count` + 2 WHERE `is_share` = 1 and `count` < 4; /** 初始化用户增加 2次参与游戏时间 */ UPDATE `awards_user_info` SET `count` = `count` + 2 WHERE `is_share` = 0 and `count` < 3;