|
@@ -829,7 +829,7 @@ public class GameServerServiceImpl implements IGameServerService {
|
|
|
StringBuilder sql = new StringBuilder(StringUtils.EMPTY);
|
|
|
for (int i = 1; i <= 90; i++) {
|
|
|
sql.append("""
|
|
|
- concat(ifnull(round(c.da%d_active_num / e.new_da%d_total_num ,4),0)*100,'/',ifnull(round(d.new_da%d_num + d.old_da%d_num / d.new_da%d_total_num,4),0)*100,'/',IFNULL(c.da%d_reg_num,0),'/',IFNULL(c.da%d_num,0)) as da_str%d,
|
|
|
+ concat(ifnull(round(c.da%d_active_num / e.new_da%d_total_num ,4),0)*100,'/',ifnull(round((d.new_da%d_num + d.old_da%d_num) / d.new_da%d_total_num,4),0)*100,'/',IFNULL(c.da%d_reg_num,0),'/',IFNULL(c.da%d_num,0)) as da_str%d,
|
|
|
""".formatted(i, i, i, i, i, i, i, i));
|
|
|
|
|
|
}
|