我有以下查詢,它給了我前10行,我想改變它只返回變量數的意義在這種情況下的行數...變量計數是2(QCAHLSWMTPL和QCAHLSWMTPLZ),我怎麼能改變它?如何獲得獨特的變體數量?如何返回與同一個表中的變體數相匹配的行?
SELECT TOP 10 SoftwareImageBuild si, variant
FROM ODS.buildinfrastructure.SoftwareImageBuilds bsi
JOIN masterdata.softwareimages msi
ON msi.softwareimageid = bsi.SoftwareImageID
WHERE msi.SoftwareImage = 'WLAN.HL.2.0' AND
(BuiltBy = 'username1' OR BuiltBy = 'username2') and
Status !='Expired'
ORDER BY Builton DESC
MySQL中沒有'TOP'運算符。你在使用SQL-Server嗎? – Barmar
對不起......其'SQL SERVER' –
請添加期望的結果。 – McNets