I have insert query like below
INSERT INTO PUBLIC.STAFF(NAME, PICTURE,EMAIL) VALUES
('samplePic', X'89504e470d0a1a0a0000000d4', 'some@domain.com'); 
How to modify above Picture attribute string value (X'89504e47 to \x89504e47) and final Query is will be like.
 INSERT INTO PUBLIC.STAFF(NAME, PICTURE,EMAIL) VALUES
    ('samplePic', '\x89504e470d0a1a0a0000000d4', 'some@domain.com'); 
 
     
    