get time from timestamp postgressql code example
Example 1: postgres get timestamp
SELECT CURRENT_TIMESTAMP;
Example 2: postgres extract time from timestamp
select cast(timestamp '2014-04-03 12:34:00' as time)
-- equivalent to
select '2014-04-03 12:34:00'::time