I have a function in postgreSQL,One of my function argument is text type variable and that enclosed with in double quotes so i want to insert this variable to table with out double quotes ,when i search regarding this on net i got a query like SELECT trim(both ' ' from 'techonthenet.com'); but this not working in the case of double quotes so how will i remove double quotes from text string variable in postgreSQL function
-
@Kei when i SELECT trim(both '"' from "techonthenet.com"); try this it seems errorSherin Green– Sherin Green2019-09-19 04:45:51 +00:00Commented Sep 19, 2019 at 4:45
Add a comment
|