W
Wei-Meng
Hello all:
Got a question on SQL to ask:
Say I have an Access database containing a table with the following fields
and records:
Model Serial
A 1234
A 2345
A 3456
B 9876
B 8765
What is the SQL statement to generate the following result:
Model Serial Qty
A 1234
A 2345
A 3456 3
B 9876
B 8765 2
I need to print the subtotal for each model only once for each unique model.
How does the SQL look like?
Thanks!
Got a question on SQL to ask:
Say I have an Access database containing a table with the following fields
and records:
Model Serial
A 1234
A 2345
A 3456
B 9876
B 8765
What is the SQL statement to generate the following result:
Model Serial Qty
A 1234
A 2345
A 3456 3
B 9876
B 8765 2
I need to print the subtotal for each model only once for each unique model.
How does the SQL look like?
Thanks!