If you have the minutes, seconds, and am/pm and want to get them into a time column (time without timezone), you can do something like this:
psql=# select to_timestamp('10:45am', 'HH12:MIam')::timetz::time; to_timestamp -------------- 10:45:00 (1 row)