date_part - multiple values in format?

From: "Emils Klotins" <emils(at)mail(dot)usis(dot)bkc(dot)lv>
To: pgsql-sql(at)postgreSQL(dot)org
Subject: date_part - multiple values in format?
Date: 2000-03-02 15:10:07
Message-ID: 200003021508.RAA08695@omega.bkc.lv
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Is there a way to format date according to a template or
anything like that?

Looked at the docs, didn't see anything (didn't see actually
anything much explaining how to get parts of date out)
appropriate.

I am looking basically for something like:
select date_part('%d %m %y', now()::datetime);

As I see it currently I can only do it with something like:
select ((date_part('day',now()::datetime) || date_part('month',
now()::datetime)) || date_part('year', now()::datetime);

which is, of course, rather clumsy.

This, btw, goes about concatenation, too.

Will there be a possibility of string concatenation in 7.x so that
I don't have to put all the concats in brackets? (ie. currently I
have to: ((((X || Y) || Z ) || A) || B)
which is of course also rather clumsy and leads to lots of
typos in case of more complex expressions.

Emils

-----BEGIN PGP SIGNATURE-----
Version: PGP 6.5.2 -- QDPGP 2.61a
Comment: http://community.wow.net/grt/qdpgp.html

iQA/AwUBOL5nqt0sxa1MAPWHEQLEYwCfaJA+qlrYacC/cgcGOQ3rnTkGXu4AoIeK
B0aW+djoeiR0TVIp5J/elUZL
=AB97
-----END PGP SIGNATURE-----

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2000-03-02 15:46:03 Re: [SQL] date_part - multiple values in format?
Previous Message Karel Zak - Zakkr 2000-03-02 11:10:39 Re: [SQL] RE: DATE Formating Problem Again