J'aimerais fusionner ces 2 requètes:
select convert(varchar(10),Date,103) AS Date from vignette WHERE truc=1 and machin=0 group by convert(varchar(10),Date,103) ORDER BY convert(varchar(10),Date,103)
et
select count(*) as NBRE from ( select id from vignette where truc=1 and machin=0 AND convert(varchar(10),Date,103)='REQUETE_DU_HAUT' group by id) T
En fait j'aimerais mettre la 1ère requète dans le where de la 2ème requète.
Merci d'avance

