I am using SQL developer to run queries on a database and one of the tables shows a create date for each request added. The query pulls a unix time stamp back and I haven't had much luck on Google when searching for Oracle SQL Dev.
select ID, CREATED
from REQUESTS
where ID = 'bob'
order by create_date DESC;