-1
votes
0answers
25 views

How to use sub queries while inserting record into db using cx_Oracle in python? [closed]

I need to add a symbol with the value of self.wrkArea variable like this (select chr(182) from dual) || self.wrkArea || (select chr(182) from dual) i.e. ¶workarea¶ will be the result. how to ...