私はそれほど高度なSQLユーザーではありません。次のクエリを見直していただけますか? または、より最適化された、より読みやすい何かを行うことができますか?
select Distinct DT.Station , DT.Slot , DT.SubSlot, DT.CompID , CL.CompName
from (
select Station, Slot, SubSlot, CompID
from DeTrace
where DeviceID = '1151579773'
) as DT
Left outer CList as CL
on DT.CompID = CL.CompID
where CL.CompName = '9234220'
order by CompName
手伝ってくれてありがとう。