making two columns out of one - Mailing list pgsql-sql

From Frank Bax
Subject making two columns out of one
Date
Msg-id 3.0.6.32.20000911093447.01fcb4c0@execulink.com
Whole thread Raw
Responses Re: making two columns out of one  (Frank Bax <fbax@execulink.com>)
List pgsql-sql
I've got a table containing some timesheet data.
Fields are emp, earncode, lo_shift, hi_shift.

SELECT emp, sum(hi_shift - lo_shift) as reghrs from timesheet 
where earncode in ('R', 'C', 'X') order by emp

will give me all the regular hours

SELECT emp, sum(hi_shift - lo_shift) as ovrhrs from timesheet 
where earncode not in ('R', 'C', 'X') order by emp

will give me all the overtime hours.

How do I combine these to get one result set with emp, reghrs, ovrhrs on
each row.

Frank




________________________________________________________                          1stUp.com - Free the Web  Get your
freeInternet access at http://www.1stUp.com
 


pgsql-sql by date:

Previous
From: Oleg Bartunov
Date:
Subject: need asap: bg_BG locale for FreeBSD
Next
From: Palle Girgensohn
Date:
Subject: Re: need asap: bg_BG locale for FreeBSD