如何优化SQL查询语句,去除无关字段
SELECT attraction.name, type.name FROM attraction JOIN attraction_type_relation ON attraction.attraction_id = attraction_type_relation.attraction_id JOIN type ON attraction_type_relation.type_id = type.type_id;
原文地址: https://www.cveoy.top/t/topic/nw7X 著作权归作者所有。请勿转载和采集!