简体   繁体   中英

SQL SERVER DATE FONCTION

How can I select date superior 4 mounth for date of today

enter image description here

You can use the datediff function to get the difference between two dates:

SELECT *
FROM   mytable
WHERE  datediff(MONTH, datec, GETDATE()) > 4

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2025 STACKOOM.COM