Re: remove everything before the period - Mailing list pgsql-general

From Giuseppe Broccolo
Subject Re: remove everything before the period
Date
Msg-id 52387646.3080703@2ndquadrant.it
Whole thread Raw
In response to remove everything before the period  (karinos57 <karinos57@hotmail.com>)
Responses Re: remove everything before the period  (Agustin Larreinegabe <alarreine@gmail.com>)
List pgsql-general
Il 17/09/2013 04:21, karinos57 ha scritto:
> Hi,
> I am trying to remove everything before the period in other words i only
> want to show the values that starts from the period.  For instance
> 897.78 ==> 78
> 74.25 ==> 25
> 3657.256 ==> 256
>
> well the code below only shows everything before the period but i want to
> show everything after the period
>
> select volume, substring(volume from 1 for position('.' in volume) - 1) as
> column
> from MyTable    ;
Try with: " SELECT volume, substring(volume from position('.' in volume)
+ 1) AS column FROM MyTable; "

Giuseppe.

--
Giuseppe Broccolo - 2ndQuadrant Italy
PostgreSQL Training, Services and Support
giuseppe.broccolo@2ndQuadrant.it | www.2ndQuadrant.it



pgsql-general by date:

Previous
From: Luca Ferrari
Date:
Subject: Re: How to compare the results of two queries?
Next
From: Adam C Falkenberg
Date:
Subject: Re: Using ODBC and VBA to pull data from a large object