How do I make a query in SQL where the date is greater than a certain date in SQL Server?

524    Asked by NatalieDowning in SQL Server , Asked on Apr 2, 2021

I am trying this code:

SELECT * 

FROM dbo.March2010 A 

WHERE A.Date >= 2010-04-01;

 A.Date looks like: 2010-03-04 00:00:00.000

But, this is getting the desired output.

Can anybody address my query? or give any reference for this.

Answered by Natalie Downing

Your Answer

Interviews

Parent Categories