asked on October 16, 2018
In workflow Query Data activity how do I select a range of values?
For example, I have a table with date column.
In workflow I would like to select rows for range of value, lets say from 1st Oct 2018 to 15th Oct 2018.
select * from table where date >= '1 oct 2018' and date <='15 oct 2018'
or
select * from table where date between '1 oct 2018' and '15 oct 2018'
How can I achieve this?
0
0