This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Convert SQL query to SWQL query

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