Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como exibir a contagem total da última linha por filestatus?


Use uma subconsulta correlacionada:
SELECT COUNT(DISTINCT f_bankid) AS tcount
FROM tbl_fileStatus t
WHERE ? = (SELECT f_filestatus FROM tbl_fileStatus WHERE f_bankid = t.f_bankid ORDER BY f_id DESC LIMIT 1)

Substituir ? com o f_bankid você procura.
Veja a demonstração .


No MySql 8.0+ você pode usar FIRST_VALUE() função da janela:
SELECT COUNT(*) AS tcount
FROM (
  SELECT DISTINCT f_bankid, 
         FIRST_VALUE(f_filestatus) OVER (PARTITION BY f_bankid ORDER BY f_id DESC) f_filestatus
  FROM tbl_fileStatus
) t
WHERE f_filestatus = ?

Veja a demonstração .


Se você deseja resultados para todos os f_filestatus em 1 linha:
SELECT
  SUM(f_filestatus = 1) AS tcount1,
  SUM(f_filestatus = 2) AS tcount2,
  SUM(f_filestatus = 3) AS tcount3
FROM (
  SELECT t.f_bankid, t.f_filestatus
  FROM tbl_fileStatus t
  WHERE t.f_id = (SELECT f_id FROM tbl_fileStatus WHERE f_bankid = t.f_bankid ORDER BY f_id DESC LIMIT 1)
) t

Veja a demonstração .
Resultados:
> tcount1 | tcount2 | tcount3
> ------: | ------: | ------:
>       0 |       1 |       2