Re: data import: 12-hour time w/o AM/PM

From: "Tarlika Elisabeth Schmitz" <postgresql3(at)numerixtechnology(dot)de>
To: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: data import: 12-hour time w/o AM/PM
Date: 2011-02-08 19:27:23
Message-ID: 20110208192723.31d028a6@dick.coachhouse
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Tue, 8 Feb 2011 18:38:44 -0000
"Oliveiros d'Azevedo Cristina" <oliveiros(dot)cristina(at)marktest(dot)pt> wrote:

>----- Original Message -----
>From: "Tarlika Elisabeth Schmitz" <postgresql3(at)numerixtechnology(dot)de>
>To: <pgsql-sql(at)postgresql(dot)org>
>Sent: Tuesday, February 08, 2011 6:14 PM
>Subject: [SQL] data import: 12-hour time w/o AM/PM
>
>
>I am importing data in CSV format. My technique is to COPY the data
>into interim tables (starting with a "z") where I analyze them, clean
>up inconsistencies; eventually I will populate the "proper" tables with
>these data. (In the example below: COPY CSV into zevent, from there
>populate event.)
>
>The time field of the event data is givng me a headache: it's in 12h
>format but without the AM/PM qualifier!
>

>Howdy, Tarlika.
>
>If the data doesn't bring the AM/PM how are you supposed to
>distinguish between,say, 10pm and 10am ? Does it always start at
>10:30am? So 10am never arises?
>
>Best,
>Oliveiros
>

On a given day, between 6-9 events are staged, about 1/2 hour apart. If
the set of events spans 12:00, I definitely know that this isn't
midnight. I also know the order within a set.
Looking at a particular
location, which contributes to 80% of the data, there have been no
events at 10:?? ever (so far).

Looking at it as a human being I can decide in a fraction of
a second whether it's AM or PM. I just can't think of an automated
procedure how to transform this half-baked 12-hour nonsense into a time.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Emi Lu 2011-02-08 19:35:38 "select c1, method(c2) group by c1" returns all values of c2 for c1
Previous Message Andrej 2011-02-08 19:21:47 Re: data import: 12-hour time w/o AM/PM