Re: Ascii Elephant for text based protocols - Final

Поиск
Список
Период
Сортировка
От Charles Clavadetscher
Тема Re: Ascii Elephant for text based protocols - Final
Дата
Msg-id 5739B36C.50307@swisspug.org
обсуждение исходный текст
Ответ на Re: Ascii Elephant for text based protocols  (Charles Clavadetscher <clavadetscher@swisspug.org>)
Ответы Re: Ascii Elephant for text based protocols - Final  (Oleg Bartunov <obartunov@gmail.com>)
Re: Ascii Elephant for text based protocols - Final  (Karsten Hilbert <Karsten.Hilbert@gmx.net>)
Re: Ascii Elephant for text based protocols - Final  (Victor Yegorov <vyegorov@gmail.com>)
Список pgsql-general
Hi all

OK. I must come to an end with this task.

This is what I find a decent final version and I plan to use it in my
SwissPUG signature until the end of the year.

+------------------------+
|   ____  ______  ___    |
|  /    )/      \/   \   |
| (     / __    _\    )  |
|  \    (/ o)  ( o)   )  |
|   \_  (_  )   \ ) _/   |
|     \  /\_/    \)/     |
|      \/ <//|  |\\>     |
|           _|  |        |
|           \|_/         |
|                        |
|  PostgreSQL 1996-2016  |
|  20 years of success   |
+------------------------+

It suggests that the trunk is bent behind, like while feeding and I
assume that associations with phallic symbols doesn't apply anymore.

Thank you to all that provided feedbacks, suggestions and compliments.

SQL version by Melvin Davidson:

CREATE TABLE elephant
(row_num integer NOT NULL,
  row_dat varchar(30) NOT NULL,
  CONSTRAINT elephant_pk PRIMARY KEY (row_num)
);

INSERT INTO elephant
(row_num, row_dat)
VALUES
( 1,'+------------------------+'),
( 2,'|   ____  ______  ___    |'),
( 3,'|  /    )/      \/   \   |'),
( 4,'| (     / __    _\    )  |'),
( 5,'|  \    (/ o)  ( o)   )  |'),
( 6,'|   \_  (_  )   \ ) _/   |'),
( 7,'|     \  /\_/    \)/     |'),
( 8,'|      \/ <//|  |\\>     |'),
( 9,'|           _|  |        |'),
(10,'|           \|_/         |'),
(11,'|                        |'),
(12,'|  PostgreSQL 1996-2016  |'),
(13,'|  20 Years of success   |'),
(14,'+------------------------+');

SELECT row_dat FROM elephant ORDER BY row_num;

Regards
Charles


В списке pgsql-general по дате отправления:

Предыдущее
От: Charles Clavadetscher
Дата:
Сообщение: Re: Ascii Elephant for text based protocols
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Fast way to delete big table?