Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

SQL Server:come calcolare la mediana (raggruppa per)?

È necessario modificare il codice per utilizzare i decimali come segue

 SELECT
   dst,
   AVG(sp)
FROM
(
   SELECT
      dst,
      cast(sp as decimal(5,2)) sp,
      ROW_NUMBER() OVER (
         PARTITION BY dst 
         ORDER BY sp ASC, id ASC) AS RowAsc,
      ROW_NUMBER() OVER (
         PARTITION BY dst 
         ORDER BY sp DESC, id DESC) AS RowDesc
   FROM dbo.cars SOH
) x
WHERE 
   RowAsc IN (RowDesc, RowDesc - 1, RowDesc + 1)
GROUP BY dst
ORDER BY dst;

Attualmente, il comando AVG viene eseguito su un int, quindi il risultato è un int