0

このようなデータを返すストアドプロシージャがあります

ReportLabelID   AssessmentLinkId
TextBox7            10207
RadioButton2        10207
TextArea2           10207
FullName5           10207
FullName5           10211
RadioButton2        10211
TextArea2           10211
TextBox7            10211

私が欲しいのは、戻りデータをアルファベット順に、AssessmentLinkIdと一緒に、次のような順序で並べ替えることです。

ReportLabelID   AssessmentLinkId
FullName5           10207
RadioButton2        10207
TextArea2           10207
TextBox7            10207
FullName5           10211
RadioButton2        10211
TextArea2           10211
TextBox7            10211
4

1 に答える 1

0

上記のマークBによって提案されたように

ORDER BY AssessmentLinkID, ReportLabelID

私のためにトリックをしてくれてありがとう

于 2012-09-24T05:51:13.347 に答える