I have 2 table i'am trying to take some data in tblTest and put it in tblResultatPolyMinistere.I use :UPDATE tblResultatPolyMinistere as tm INNER JOIN tblTest as t ON t.NDI = tm.intEleveIdSET tm.intH1 = t.H1, tm.intH2 = t.H2, tm.intH3 = t.H3, tm.intC1 = t.C1, tm.intC2 = t.C2, tm.intC3 = t.C3, tm.RH1 = t.RH1, tm.RH2 = t.RH2, tm.RH3 = t.RH3, tm.RC1 = t.RC1, tm.RC2 = t.RC2, tm.RC3 = t.RC3WHERE tm.strDateExamen = '200806' and t.AAAAMM = '200806' and t.cours = 10332 and tm.intCoursId = 10332
When i run it i get :Incorrect syntax near the keyword 'as'.I can't find where the errorIs it my santax?Tks in adavance