Re: new line in psotgres

Поиск
Список
Период
Сортировка
От Alban Hertroys
Тема Re: new line in psotgres
Дата
Msg-id FD7D1B75-817F-49BB-A18F-CB69BF096B53@gmail.com
обсуждение исходный текст
Ответ на Re: new line in psotgres  (abdullatheef <latheefvkpadi@gmail.com>)
Ответы Re: new line in psotgres
Список 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 по дате отправления:

Предыдущее
От: abdullatheef
Дата:
Сообщение: Re: new line in psotgres
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Query runs forever after upgrading to 9.3