반응형

한글로 작성된 MySQL Workbench mwb파일을 열경우 깨짐 현상이 발생하는데,

한글 설정방법을 공유드립니다. 

 

1. 첨부파일 나눔글꼴 exe에서 나눔고딕만 설치합니다. 

https://hangeul.naver.com/2017/nanum

 

 

2. Edit-Preference 에서 아래와 같이 설정후 재시작시 적용 됩니다. 

 

 

 

728x90
반응형


<확인>

*간단한 확인 
select now();

*Time Zone 설정이 되어 있지 않다면 0
select count(*) from mysql.time_zone;

*Time Zone 국가 (KST, EEST ..) 
select @@system_time_zone;

*Time Zone 정보 
 SELECT @@global.time_zone, @@session.time_zone;
> SYSTEM SYSTEM



<변경> 
vi /etc/my.cnf

set time_zone='-07:00'; 

추가후 

systemctl restart mysqld

확인
select now();

[출처]https://www.inmotionhosting.com/support/website/databases/how-to-change-mysql-server-time-zone

728x90
반응형
select
product_name,
ifnull(sum(if(date_format(order_date, '%Y') = '2015', cnt, 0)),0) as "2015",
ifnull(sum(if(date_format(order_date, '%Y') = '2016', cnt, 0)),0) as "2016"
from product a join product_order b
on a.product_id = b.product_id
group by product_name

==

select
product_name,
ifnull(sum(if(date_format(order_date, '%Y') = '2015', cnt, 0)),0) as "2015",
ifnull(sum(if(date_format(order_date, '%Y') = '2016', cnt, 0)),0) as "2016"
from product a, product_order b
where a.product_id = b.product_id
group by product_name

 

728x90

+ Recent posts