1661. Average Time of Process per Machine activity_type: start, endmachine_id별 start~end 소요시간 차의 평균을 구하는 문제였다.그런데 machine_id별로 process가 여러개라서 그냥 machine_id로 groupby를 한 뒤, 차이를 구하기가 쉽지 않았다. [해결 방법1]SELECT a1.machine_id, ROUND(AVG(a2.timestamp - a1.timestamp),3) AS processing_timeFROM activity a1JOIN activity a2 -- SELF JOIN ON a1.machine_id = a2.machine_id AND a1.process_id = a2.process..