PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

usando copia in postgresql?

Non è del tutto chiaro (per me) che aspetto abbia esattamente il contenuto, tuttavia una di queste varianti dovrebbe funzionare:

copy (select (replace(content, e'\r\n', '')) from mydocs where id=30 ) to 'c:/data/ex10.xml';
copy (select (replace(content, '\r\n', '')) from mydocs where id=30 ) to 'c:/data/ex10.xml';