-
Nasreen Akter 10,656 Reputation points
2021-02-23T17:44:13.697+00:00 Hi @Alvord, Timothy ,
Please try the following:
SELECT Date FROM tblHistory WHERE FORMAT(Date, 'yyyy-MM-dd') = '2021-02-22'
or, if you want to use between, then
SELECT Date FROM tblHistory WHERE FORMAT(Date, 'yyyy-MM-dd') BETWEEN '2021-02-22' AND '2021-02-23'
----------
If the above response is helpful, please accept as answer and up-vote it. Thanks!
WHERE Date >= '2021-02-22' AND Date < '2021-02-23'
Tom