Date query ran in PL/SQL Developer shows time, but does not show in Oracle SQL Developer

前端 未结 3 504
情书的邮戳
情书的邮戳 2020-12-21 23:15

The same query ran in PL/SQL Developer shows time, however it does not show in Oracle SQL Developer. Is there a way to get the time in SQL Developer?

In SQL Develope

3条回答
  •  旧巷少年郎
    2020-12-21 23:53

    To make it simple: use to_char() function, it will work with SQL developer as well as Pl/sql.

    select to_char(sysdate,'MM-DD-YYYY HH:Mi:SS') from table_name;

提交回复
热议问题