전체 글 (91) 썸네일형 리스트형 연습게임7) 랭크게임 하다가 싸워서 피드백 남겼어요… select *from practice7 p 테이블에서 만족도 점수(satisfaction_score)에 따라 피드백을 내림차순으로 정렬하는 쿼리를 작성해주세요!select *from practice7 porder by satisfaction_score desc 테이블에서 각 유저별로 최신 피드백을 찾는 쿼리를 작성해주세요!select name,max(feedback_date) 'feedback_date'from practice7 pgroup by name 테이블에서 만족도 점수가 5점인 피드백의 수를 계산하는 쿼리를 작성해주세요! select count(case when satisfaction_score=5 then 1 end) cntfrom practice7 p 테이블에서 가장 많은 피드백을 .. 연습문제6) 팀 프로젝트 열심히 했으니 다시 놀아볼까요?! select *,rank() over(order by rating desc) 'rank'from practice6 select *from practice6 porder by end_date desclimit 1 select *from practice6 porder by region, rating desc select region,avg(rating)from practice6 pgroup by region 음양 더하기 def solution(absolutes,signs): answer=0 a=0 b=0 for i in range(0,len(absolutes)): if signs[i]==True: #부호가 양수이면 a=1 #+가 될수 있게 1로 주고 b=absolutes[i] #숫자 가져온 다음에 answer=answer+a*b #0에서 두개 곱해서 값을 만든후 더해 else: #부호가 음수이면 a=-1 .. 이전 1 ··· 17 18 19 20 21 22 23 ··· 31 다음