I'm using system to control the process in my company and some of it has comment table, let us say it is Opr_comm. the content inside that attribute is various sometimes it contain "<", ">", "'" and so many symbols. here is the query.
SELECT
T1.Prod_No,
T1.Proc_CD,
T1.Opr_Comm
FROM
P110 T1
I have figure it out, when we input to system <
it will turned to be <
, when >
it will be >
. it happen when i retrieve it from database.
So, how can i convert that code to be symbol again?
Thank you very much for your help