Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to remove double quotes from column

User_5LCH2Oct 18 2018 — edited Oct 23 2018

We want to remove the leading and trailing double quotes from the column as the double quotes are hidden in the column in sql developer..

Example:

This is the string where we want to remove the double quotes but the string split into two lines when copy paste from sql developer.

"CHUTE PLATE SKIRT 3/8X 16X8'

22DEG BEND W/ 3/4 COLD ROLL"

and the query i tried is,

SELECT REPLACE(item_description, '"', '') from po_lines_all where item_description like'%CHUTE%PLATE%'; -- but it is not removing the hidden double quotes.

pastedImage_0.png

Comments
Post Details
Added on Oct 18 2018
25 comments
29,558 views