Frage : Zählimpulszahl von Zeiten ein Wert erscheint innerhalb der zurückgebrachten Reihen

Hallo, möchte

I einen Kostenzähler dem folgenden Tabelle, das das vCodealternative
AUSERWÄHLTE EINDEUTIGE vSubCodeAlternative, zählt vCodeAlternative
hinzufügen VON dbo.tbProduct
, WO (iProductGroupId = @iProductGroupid) UND (vSubCodeAlternative <> '' UND NICHT (vSubCodeAlternative IST) UNGÜLTIG)
Auftrag durch vCodeAlternative, vsubCodeAlternative

returns
vSubCodeAlternative, vCodeAlternative:
subcode1 code1
subcode2 code1
subcodeA code2

would wie es zum zurückzugehen:
vSubCodeAlternative, vCodeAlternative, counter
subcode1 Code 2
subcode2 code1 2
subcodeA code2 1

Thanks

Antwort : Zählimpulszahl von Zeiten ein Wert erscheint innerhalb der zurückgebrachten Reihen

x.vSubCodeAlternative, x.vCodeAlternative, y.Counter VORWÄHLEN
VON
(
EINDEUTIGES vSubCodeAlternative VORWÄHLEN, vCodeAlternative
      VON dbo.tbProduct
      WO (iProductGroupId = @iProductGroupid) UND (vSubCodeAlternative <> '')
) X,
(
      vCodeAlternative, GELTEN (eindeutiges vSubCodeAlternative) VORWÄHLEN als entgegengesetzt
      VON dbo.tbProduct
      WO (iProductGroupId = @iProductGroupid) UND (vSubCodeAlternative <> '')
      GRUPPE DURCH vCodeAlternative
) Y
wo x.vCodeAlternative=Y.vCodeAlternative
Auftrag durch x.vCodeAlternative, x.vsubCodeAlternative
Weitere Lösungen  
 
programming4us programming4us