Lorsque je fais cette requete, résultat est affiché

select idProduit from Produit,BL
where dateBL between '12/06/06' and '12/07/06' and BL.idBl=Produit.idBl
RETURN

mais lorsque je veux utiliser des paramètres cela ne fonctionne pas

@dateDeb datetime,
@dateFin datetime
AS
select idProduit from Produit,BL
where dateBL between @dateDeb and @dateFin and BL.idBl=Produit.idBl
RETURN


Avez-vous une solution ?