Domanda

I've got 2 date columns in my table (start_date, end_date).

I've tried Datediff(day, start_date, end_date), but I was prompt with:

invalid column name


How can I calculate the date difference between these 2 columns?

È stato utile?

Soluzione

select DATEDIFF (day,start_date,end_date) from yourtablename;

Altri suggerimenti

Should be Datediff(day, start_date, end_date). There is no 's' at the end of the day

It should be "day"

Datediff(day, start_date, end_date) 
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top