1 2 3 4 5 6 7 8 9 10
| select ligne_schema.sens,ligne_schema.n_compte,compte.intitule_compte,dictionnaire_donnee.libelle_donnee
into :ligne_schema.sens,:ligne_schema.n_compte,:compte.intitule_compte,:dictionnaire_donnee.libelle_donnee
from ligne_schema,compte,dictionnaire_donnee,schema_comptable,produit,operation
where compte.n_compte=ligne_schema.n_compte
and ligne_schema.code_donnee=dictionnaire_donnee.code_donnee
and ligne_schema.code_schema=schema_comptable.code_schema
and schema_comptable.code_produit=produit.code_produit
and schema_comptable.code_oper=operation.code_oper
and produit.code_produit=:produit.code_produit
and :operation.code_oper=operation.code_oper; |
Partager