Re: where'd the spaces come from - Mailing list pgsql-sql

From Bruce Momjian
Subject Re: where'd the spaces come from
Date
Msg-id 200108021550.f72FoW727322@candle.pha.pa.us
Whole thread Raw
In response to Re: where'd the spaces come from  ("Richard Huxton" <dev@archonet.com>)
Responses Re: where'd the spaces come from  (Gary Stainburn <gary.stainburn@ringways.co.uk>)
List pgsql-sql
Does anyone have a fix for this?


> From: "Gary Stainburn" <gary.stainburn@ringways.co.uk>
> 
> > psql -c "select t.tregion || '/' || to_char(t.tnumber,'000') || '-' ||
> > to_char(m.mnumber,'00') as unitno from teams t, members m
> > where m.mteam = t.tid;"
> >    unitno
> > -------------
> >  SW/ 041- 03
> >  SW/ 041- 05
> 
> Looks like a buglet in to_char()s handling of numbers (unless I
> misunderstand the way the formatting is supposed to work).
> 
> select '[' || to_char(12,'x000') || ']';
>  ?column?
> ----------
>  [x 012]
> 
> If you're running the current version, might be worth posting a bug report.
> You can work around it with something like:
> 
> ... substr(to_char(t.tnumber,'000'),2,3) ...
> 
> HTH
> 
> - Richard Huxton
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
> 

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


pgsql-sql by date:

Previous
From: "Lorenzo De Vito"
Date:
Subject: Foreign key
Next
From: Gary Stainburn
Date:
Subject: Re: where'd the spaces come from