써먹는 웹개발
[Mysql/MariaDB] 양/음수 double 형 데이터 3자리마다 콤마 추가 쿼리문 본문
728x90
반응형
CASE
WHEN A.NRF REGEXP '^-[0-9]+(\\.[0-9]+)?$' THEN concat('-', format(substr(A.NRF, 2),0), substring(A.NRF, instr(A.NRF, '.')))
WHEN A.NRF REGEXP '^[0-9]+(\\.[0-9]+)?$' THEN concat(format(truncate(substr(A.NRF,1),0),0), substring(A.NRF, instr(A.NRF, '.')))
ELSE A.NRF
END as NRF,
원래 컬럼명 : A.NRF
현재 컬럼명 : NRF
728x90
반응형
'웹개발 > Database' 카테고리의 다른 글
[Mysql/Mariadb] 외부에서 접속할때 속도 느린 현상의 원인 및 해결방법 (0) | 2022.12.07 |
---|---|
[Mysql/MariaDB] insert문은 그대로 두고 뒤에 update 추가하는 방법 (2) | 2022.11.22 |
[DB] Linux > Could not connect to address 해결방법 (0) | 2022.11.21 |
[MariaDB] Unsafe query: 'Delete' statement without 'where' clears all data in the table (0) | 2022.11.15 |
[MariaDB] mysql에서 mariadb를 쓸때 jdbc 오류 해결방법 (0) | 2022.11.14 |
Comments