From 679914054f6ab9d0a9b3517b7f70e610b56de3a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EC=9D=B4=EC=86=94?= Date: Sun, 24 Jul 2022 14:00:25 +0900 Subject: [PATCH] =?UTF-8?q?[=EC=88=98=EC=A0=95]=20=EB=B0=B1=EC=8B=A0=20que?= =?UTF-8?q?ry=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit '차'제거 다른 round들 문자열 "차"까지 저장 --- .../sqlmap/m/bf_growth/com.backoffice.m.bf_growth.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/sqlmap/m/bf_growth/com.backoffice.m.bf_growth.xml b/src/main/resources/sqlmap/m/bf_growth/com.backoffice.m.bf_growth.xml index 32e2408..c639e33 100644 --- a/src/main/resources/sqlmap/m/bf_growth/com.backoffice.m.bf_growth.xml +++ b/src/main/resources/sqlmap/m/bf_growth/com.backoffice.m.bf_growth.xml @@ -396,7 +396,7 @@ select date_format(date_add(fb.birthday,interval dvs.start_label month),'%Y. %m. %d') recmnd_from_dt , date_format(date_add(date_add(fb.birthday, interval dvs.end_label month), interval -1 day),'%Y. %m. %d') recmnd_to_dt , date_format(date_add(fb.birthday,interval dvs.start_label month),'%Y년 %m월') recmnd_month - , concat (dvs.round, ' 차 ', dv_disease, ' [', dv.dv_type, ']' ) as dv_disease + , concat (dvs.round, ' ', dv_disease, ' [', dv.dv_type, ']' ) as dv_disease , dvs.round from tbl_db_vac_schedule dvs inner join tbl_db_vac dv @@ -404,14 +404,14 @@ left join tbl_bf_family_baby fb on fb.smc_no = #smc_no# where not now() > date_add(date_add(fb.birthday, interval dvs.end_label month), interval -1 day) - order by recmnd_to_dt , dvs.dv_no, dvs.round + order by recmnd_from_dt , dvs.dv_no, dvs.round