You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE OR REPLACE PROCEDURE listeDisponible(cat in modeles.id_categorie%type,debut in dossiers.date_retrait%type,fin in dossiers.date_retour_prevu%type) is
CURSOR liste is
select v.num_immatriculation,mo.nom
from vehicules v,modeles mo,dossiers d,categories c
where d.num_immatriculation=v.num_immatriculation
and v.id_modele=mo.id_modele
and mo.id_categorie=c.id_categorie
and (sysdate>d.date_retour_effectif or sysdate<d.date_retrait)