From: | Charles Clavadetscher <clavadetscher(at)swisspug(dot)org> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Ascii Elephant for text based protocols - Final |
Date: | 2016-05-16 11:47:56 |
Message-ID: | 5739B36C.50307@swisspug.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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
From | Date | Subject | |
---|---|---|---|
Next Message | Adrian Klaver | 2016-05-16 13:50:27 | Re: Fast way to delete big table? |
Previous Message | Charles Clavadetscher | 2016-05-16 08:54:06 | Re: Ascii Elephant for text based protocols |