We are using a SQL query to search on the basis of dateFrom and dateTo fields. for that i am using \"greater than equal to(>=)\" and \"less than equ
There is no difference.
(x BETWEEN y AND z)
is the same as writing
((x >= y) AND (x <= z))