본문 바로가기

TIL

240718 TIL

SQL

 

 

SELECT  substr(s.sales_date,1,4) YEAR,
        substr(s.sales_date,6,2) MONTH,
        i.gender GENDER,
        count(distinct i.user_id) USERS
from online_sale s left join user_info i on s.user_id=i.user_id
where i.gender is not null
group by 1,2,3
order by 1,2,3 asc

 

 

Ptyhon

 

plt.rc('font', family='Malgun Gothic')                   # 깨진 한글 폰트 해결
plt.rcParams['axes.unicode_minus'] = False               # 음수 해결

 

 

'TIL' 카테고리의 다른 글

240722 TIL group by vs partition by  (3) 2024.07.22
240719 TIL  (0) 2024.07.19
240717 TIL  (0) 2024.07.17
240712 TIL  (0) 2024.07.12
240711 TIL  (0) 2024.07.11