Dialog box

eugz

Registered User.
Local time
Today, 15:20
Joined
Aug 31, 2004
Messages
128
Hi All.
I created query with dialog box in Access :
Code:
SELECT (Format([Date_P],"mmm yyyy")) AS [Date_P], Result, Count([Date_P]) AS Pos
FROM ABC
GROUP BY (Format([Date_P],"mmm yyyy")), Result, Format([Date_PAP],"yyyy")
HAVING Result<>"neg" AND Count(Date_P>0
AND (Format([Date_P],"yyyy")=[Please, enter year (yyyy):]);
How to convert that query to veiw MS SQL?
Thank.
 

Users who are viewing this thread

Back
Top Bottom