쿼리 효율성을 분석할 때 설명 명령에 의존해야 합니까? explain SELECT * FROM house JOIN street s on house.STREET_ID = s.ID WHERE s.type'out_of' AND street.DISTRICT_ID=4 ORDER BY house.num; explain SELECT * FROM house JOIN street s on house.STREET_ID = s.ID WHERE s.type'out_of' AND house.DISTRICT_ID=4 ORDER BY house.num; type 및 district_id는 Street table district_id가 House table에서 인덱스된 화합물입니다. 거리에서 설명하다지구_ID=4, 스트리트 테이블이..