
December 6th, 2012, 03:04 PM
|
|
Registered User
|
|
Join Date: Dec 2012
Posts: 1
Time spent in forums: 11 m 13 sec
Reputation Power: 0
|
|
|
Asking user input, why?
I am fairly new to SQL but I have a query that asks for user input no matter how I try to code it. Here is what I have:
SELECT DISTINCTROW Roundedmm, Sum([Incoming].[Number of Pieces]) AS num_pieces
FROM Incoming
GROUP BY Roundedmm;
Why would this be asking for a user input for Roundedmm? I know this must be a simple issue but any help would be great.
|