▶ 학습내용 문제1) select*from basic.payment select gb,count(distinct game_account_id) as usercntfrom(select u.game_account_id,case when p.game_account_id is not null then '결제함'else'결제안함' end as gbfrom basic.users as u left join basic.payment as p on u.game_account_id=p.game_account_id) as agroup by gb ▶ 어떤테이블을 기준으로 두고 조인을 할 것인지를 생각해야 하고 , payment 테이블에 계임계정이 있으면 결제함 으로 하는 것이 조건이다. join왼쪽이 기준 테이블이 되며..