Re: new line in psotgres - Mailing list pgsql-general

From Alban Hertroys
Subject Re: new line in psotgres
Date
Msg-id FD7D1B75-817F-49BB-A18F-CB69BF096B53@gmail.com
Whole thread Raw
In response to Re: new line in psotgres  (abdullatheef <latheefvkpadi@gmail.com>)
Responses Re: new line in psotgres
List pgsql-general
On Nov 9, 2013, at 12:08, abdullatheef <latheefvkpadi@gmail.com> wrote:

> you can include newline in postgre using literal E
>
> create table table (text varchar(50));
> insert into Table (text) values (E'This is the first part \\n And this is
> the second');


Or like this:
development=> begin;
BEGIN
development=> create table t1 (text text);
CREATE TABLE
development=> insert into t1 values ('This is line 1.
development'> This is line 2.');
INSERT 0 1
development=> select * from t1;
      text
-----------------
 This is line 1.+
 This is line 2.
(1 row)


Alban Hertroys
--
If you can't see the forest for the trees,
cut the trees and you'll find there is no forest.



pgsql-general by date:

Previous
From: abdullatheef
Date:
Subject: Re: new line in psotgres
Next
From: Tom Lane
Date:
Subject: Re: Query runs forever after upgrading to 9.3