sql >> Base de Datos >  >> RDS >> Sqlserver

Agrupación de SQL:mostrar solo 5 comentarios por publicación

select
   *
FROM
   tblPost P
   OUTER APPLY
   (SELECT TOP 5 * FROM tblComment C  
      WHERE P.id = C.postid
      ORDER BY something) inline