Insert into NotesTemp (workitemid, companycode, transactiontype , notetext , datedue, current_workste p, current_status, Userupdate_oper ator, QA_Operator, DateUpdated)
select w1.workitemid,c c.companycode,t .transactiontyp e,n.notetext,w1.datedue,
s.workstep as current_workste p,ss.status as current_status, wo.operatorname as Userupdate_oper ator,
wh.updatedby as QA_Operator, wh.dateupdated from wi_workitemnote n
(joins, where clause, order by left out to make it easier to read)
n.notetext contains apostrophe's in some instances and maps to notetext in the notestemp table. How would I modify this so the insert will modify the apostrophes and work?
Thanks in advance.
select w1.workitemid,c c.companycode,t .transactiontyp e,n.notetext,w1.datedue,
s.workstep as current_workste p,ss.status as current_status, wo.operatorname as Userupdate_oper ator,
wh.updatedby as QA_Operator, wh.dateupdated from wi_workitemnote n
(joins, where clause, order by left out to make it easier to read)
n.notetext contains apostrophe's in some instances and maps to notetext in the notestemp table. How would I modify this so the insert will modify the apostrophes and work?
Thanks in advance.
Comment