DB 데이터 조회 시 null 인 값을 0으로 변환하고자 한다.
조회할 때만 null 을 0으로 바꾸는 방법이다.
select COALESCE(h.point, 0) from history h ;
실제 DB에 데이터를 null 을 0으로 수정하는 방법이다.
update history set refund_point = 0 where refund_point is null;
반응형
'프로그래밍 언어 > DB' 카테고리의 다른 글
[MySQL] 문자열 일부분만 가져오기 (0) | 2023.04.14 |
---|---|
[MySQL] MySQL에 csv 파일 INSERT 하기 (0) | 2023.03.21 |
[sql] functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by (0) | 2023.01.04 |
[mysql] Failed to determine a suitable driver class (0) | 2022.11.08 |
MySQL EXPLAIN 실행 계획 보기 (쿼리 최적화 하기) (0) | 2022.08.19 |