Bonjour,

j'ai un problème sur une requête SQL sur un ERP:

---------------------------------------------------------
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
UPDATE root_pro_ofcomp SET 
root_pro_ofcomp.qte_sort = (:sort), 
root_pro_ofcomp.cd_suivfab = (:etat), 
root_pro_ofcomp.dte_sortreel = (:dte)
WHERE root_pro_ofcomp.no_of=(:of) AND 
root_pro_ofcomp.ord_oper=(:oper) AND 
root_pro_ofcomp.position=(:posi)
---------------------------------------------------------

Le champ position est un mot clé SQL... je ne peux pas renommer le champ ! Comment contourner ce problème ?

Merci


FRANK