Oracle 9i equivalent de fonctionSQL model ?
Fermé
gilal
Messages postés
1
Date d'inscription
mardi 11 novembre 2008
Statut
Membre
Dernière intervention
11 novembre 2008
-
11 nov. 2008 à 18:04
chuka Messages postés 965 Date d'inscription samedi 11 octobre 2008 Statut Membre Dernière intervention 29 juillet 2010 - 11 nov. 2008 à 22:07
chuka Messages postés 965 Date d'inscription samedi 11 octobre 2008 Statut Membre Dernière intervention 29 juillet 2010 - 11 nov. 2008 à 22:07
A voir également:
- Oracle 9i equivalent de fonctionSQL model ?
- Equivalent coco - Accueil - Réseaux sociaux
- Equivalent wawacity - Accueil - Outils
- Équivalent coco - Accueil - Réseaux sociaux
- Equivalent word gratuit - Guide
- Prestige model management - Forum Consommation & Internet
1 réponse
chuka
Messages postés
965
Date d'inscription
samedi 11 octobre 2008
Statut
Membre
Dernière intervention
29 juillet 2010
378
11 nov. 2008 à 22:07
11 nov. 2008 à 22:07
Salut,
essaye cela:
modif le en fonction de tes variables....
J'espere ca pourra t'aider!!
@+
essaye cela:
declare cursor cur is select * from toto; cursor curs is select DEBUT,FIN,LIEN from toto; mon_curs cur%rowtype; mon_curs1 curs%rowtype; var number(4):=1; j tata.DEBUT%type; begin i:=1; open cur; fetch cur into mon_curs; while cur%FOUND loop begin select tata.DEBUT into j from tata where tata.DEBUT=mon_curs.DEBUT and tata.FIN=mon_curs.FIN and tata.LIEN=mon_curs.LIEN; exception when NO_DATA_FOUND then begin open curs; fetch curs into mon_curs1; while curs%FOUND loop if mon_curs.FIN=mon_curs1.DEBUT then insert into tata (DEBUT,FIN,LIEN) values (mon_curs.DEBUT,mon_curs.FIN,mon_curs.LIEN); insert into tata (DEBUT,FIN,LIEN) values (mon_curs1.DEBUT,mon_curs1.FIN,mon_curs1.LIEN); var:=0; end if; fetch curs into mon_curs1; end loop; close curs; if var=1 then insert into tata (DEBUT,FIN,LIEN) values (mon_curs.DEBUT,'ANOMALIE',mon_curs.LIEN); var:=1; end if; end; end; fetch cur into mon_curs; end loop; close cur; end;
modif le en fonction de tes variables....
J'espere ca pourra t'aider!!
@+