|
@@ -2786,6 +2786,7 @@ public class GameDataServiceImpl implements IGameDataService {
|
|
SELECT
|
|
SELECT
|
|
dt as cost_date,
|
|
dt as cost_date,
|
|
source_system,
|
|
source_system,
|
|
|
|
+ MAX(parent_game_id) as game_id,
|
|
GROUP_CONCAT(parent_game_name) as game_name,
|
|
GROUP_CONCAT(parent_game_name) as game_name,
|
|
IFNULL(SUM(cost), 0) cost,
|
|
IFNULL(SUM(cost), 0) cost,
|
|
IFNULL(SUM(buy_reg_num), 0) reg_num,
|
|
IFNULL(SUM(buy_reg_num), 0) reg_num,
|
|
@@ -2839,6 +2840,7 @@ public class GameDataServiceImpl implements IGameDataService {
|
|
SELECT
|
|
SELECT
|
|
dt as cost_date,
|
|
dt as cost_date,
|
|
source_system,
|
|
source_system,
|
|
|
|
+ MAX(parent_game_id) as game_id,
|
|
GROUP_CONCAT(parent_game_name) as game_name,
|
|
GROUP_CONCAT(parent_game_name) as game_name,
|
|
IFNULL(SUM(cost), 0) cost,
|
|
IFNULL(SUM(cost), 0) cost,
|
|
IFNULL(SUM(nature_reg_num), 0) reg_num,
|
|
IFNULL(SUM(nature_reg_num), 0) reg_num,
|
|
@@ -2893,6 +2895,7 @@ public class GameDataServiceImpl implements IGameDataService {
|
|
SELECT
|
|
SELECT
|
|
dt as cost_date,
|
|
dt as cost_date,
|
|
source_system,
|
|
source_system,
|
|
|
|
+ MAX(parent_game_id) as game_id,
|
|
GROUP_CONCAT(parent_game_name) as game_name,
|
|
GROUP_CONCAT(parent_game_name) as game_name,
|
|
IFNULL(SUM(cost), 0) cost,
|
|
IFNULL(SUM(cost), 0) cost,
|
|
IFNULL(SUM(reg_num), 0) reg_num,
|
|
IFNULL(SUM(reg_num), 0) reg_num,
|