6

Guys i want the following oracle sql query to print the following value. I want to remove single quote from the column value. Let me know how to do that

select MSGID from schemaname_interface_daily_20110427 ;

Input:

X'414d51204545415837313150202020204d54a9e423d31a16' 

Output:

X414d51204545415837313150202020204d54a9e423d31a16 

1 Answer 1

16
select replace (MSGID, '''', '') from schemaname_interface_daily_20110427;

Complete REPLACE function's documentation.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.