Utilisez une sous-requête corrélée :
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)
Remplacer ?
avec le f_bankid
que vous recherchez.
Voir la démo
.
Dans MySql 8.0+, vous pouvez utiliser FIRST_VALUE()
fonction fenêtre :
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 = ?
Voir la démo
.
Si vous voulez des résultats pour tous les f_filestatus
sur 1 ligne :
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
Voir la démo
.
Résultats :
> tcount1 | tcount2 | tcount3
> ------: | ------: | ------:
> 0 | 1 | 2