Click here to Skip to main content
16,008,299 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
2 dates column is storing in table how can i fetch and substract that and count total days
Posted

Use the SQL Server DateDiff function[^].
E.g. SELECT DATEDIFF(day,date1,date2') AS DiffDate
 
Share this answer
 
try this
SQL
select DATEDIFF(day,date1,date2) as dDiff from table
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900