How can I discard/round the millisecond part, better if the second part is also removed from a timestamp w/o timezone ?>
millisecond
second
timestamp
timezone
if you just want time, here is the code for postgres
SELECT DATE_TRUNC('second', CURRENT_TIMESTAMP::timestamp)::time;
it will return 'time without time zone' data type