How can I do a SQL BETWEEN Operator that actually includes the ranges?
The important thing is: This query will just compare MONTH, DAY and YEAR. (will ignore time)
Here is part my code:
WHERE [RECEIPT_START_DATE] BETWEEN @RECEIPT_START_DATE_from AND @RECEIPT_START_DATE_to
Thanks in advance!