select amount weeks between two dates mysql

Solutions on MaxInterview for select amount weeks between two dates mysql by the best coders in the world

showing results for - "select amount weeks between two dates mysql"
Jaida
13 Apr 2020
1##syntax: FLOOR(DATEDIFF(DATE(column_end_date), DATE(column_ini_date))/7)
2
3Select FLOOR(DATEDIFF(DATE(20090215), DATE(20090101))/7);