Answers for "sql find the difference between two numbers"

SQL
1

find difference in dates sql

SELECT DATEDIFF(day, date1,date2) AS DateDiff
/*
DATEDIFF accepts three arguments
1- day, month, year etc what form you need difference
2,3- dates 
*/
Posted by: Guest on December-30-2020
0

the differnece between to values in sql

SELECT 	
city,
	year,
      population_needing_house,
      LAG(population_needing_house)
      OVER (PARTITION BY city ORDER BY year ) AS previous_year
      population_needing_house - LAG(population_needing_house)
 	OVER (PARTITION BY city ORDER BY year ) AS difference_previous_year
FROM 	housing
ORDER BY city, year
Posted by: Guest on July-01-2021

Code answers related to "sql find the difference between two numbers"

Code answers related to "SQL"

Browse Popular Code Answers by Language