Tracking Figures

Leeus

Well-known member
Joined
Dec 23, 2002
Messages
50
I have a database for my support guys and it will show the date opened and the date closed. What I want is a query that will return all of todays closed items, for the past seven days. This is how it is at the moment.

Code:
select * from support where dateclosed = getdate()

What I suppose my question is how do I run all "n" SQL statements and get them into a readable form most efficiently???
 
Back
Top