Pivot Table & Dates

G

Guest

I have the following query in microsoft query,

SELECT v_AnalogHistory.DateTime, v_AnalogHistory.TagName,
v_AnalogHistory.Value, v_AnalogHistory.wwRowCount
FROM Runtime.dbo.v_AnalogHistory v_AnalogHistory
WHERE (v_AnalogHistory.TagName='PS004_Pump1.Daily_Runtime') AND
(v_AnalogHistory.DateTime={ts '2007-01-01 00:00:00'} And
v_AnalogHistory.DateTime<={ts '2007-01-14 23:59:59'}) OR
(v_AnalogHistory.TagName='PS004_Pump2.Daily_Runtime') OR
(v_AnalogHistory.TagName='PS004_Pump1.Daily_Starts') OR
(v_AnalogHistory.TagName='PS004_Pump2.Daily_Starts')

what i would like to do is just grab the last 14 days of data..ie

v_AnalogHistory.DateTime=GetDate()
And v_AnalogHistory.DateTime<=GetDate()-14

is this possiable?
 
G

Guest

What is GetDate? Is that a function you have written? In any case what you
need to do is to write the SQL using the native SQL of the database you are
connecting too. You can not use anything other than the native SQL commands.
if it is just the last 14 days that should be fairly easy to do.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top