Not that familiar with SWQL, but here is the SQL query I need to convert:
Declare @future datetime
Set @future = getdate() + 30
Select * from Nodes where EndDate >= getdate() - 1 AND EndDate <=@future
Thanks in advance
Not that familiar with SWQL, but here is the SQL query I need to convert:
Declare @future datetime
Set @future = getdate() + 30
Select * from Nodes where EndDate >= getdate() - 1 AND EndDate <=@future
Thanks in advance