おかげで..私はの合計を取得するために上記のコードを使用していますSQLグループは
SELECT width, thickness, lengthfeet, lengthinch, Sum(nos), Sum(areasqft)
FROM materialsdetails
WHERE materialcode='" & Me.txtMaterialCode.Text & "'
GROUP BY width, thickness, lengthfeet, lengthinch
ORDER BY width, thickness, lengthfeet, lengthinch
、フィールドの番号 'とグループによる「areasqft」。
「トランザクションスルー」の列にある(画像をご覧ください)データとして「購入」、「問題」、「返品」、「損害」を入力しました。クエリ内の同じGroup by
フィールドを持つダメージ - 号+リターン -
実際には、代わりにSum(nos)
とSum(areasqft)
の私はちょうど 購入として値を必要とします。
エラーは何ですか? – Minh