select top 10 productName
from Products
where productDetails like '%something%'
group by productName
order by productName asc
パフォーマンスを向上させるには、クエリで何を行う/変更する必要がありますか?
select top 10 productName
from Products
where productDetails like '%something%'
group by productName
order by productName asc
パフォーマンスを向上させるには、クエリで何を行う/変更する必要がありますか?