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) USERSfrom online_sale s left join user_info i on s.user_id=i.user_idwhere i.gender is not nullgroup by 1,2,3order by 1,2,3 asc Ptyhon plt.rc('font', family='Malgun Gothic') # 깨진 한글 폰트 해결plt.rcParams['axes.unicode_minus'] = False ..
240708 TIL (partition by)
select a.category, a.price as 'MAX_PRICE', a.product_name as 'PRODUCT_NAME'from(select category, price, product_name, rank() over (partition by category order by price desc) RANKKKfrom food_productwhere category in ('과자','국','김치','식용유')) awhere rankkk=1order by 2 desc환경셋팅오늘은 기존 노트북에서 사용하던 환경을 데스크탑으로 옮기는 작업을 실시하였다. 파이썬, 주피터노트북을 새로 설치하고 DBeaver 설치 및 스파르 DB연결, l..