how to truncate date and get only time part 9:20:00

Answers were Sorted based on User's Feedback



how to truncate date and get only time part 9:20:00..

Answer / sandeep

select to_char(sysdate,'HH24:MM:SS') from dual;

Is This Answer Correct ?    9 Yes 1 No

how to truncate date and get only time part 9:20:00..

Answer / pari

declare
str varchar2(250);
str1 varchar2(250);
begin
select to_char(sysdate,'dd-mm-yyyy hh:mi:ss') into str from
dual;
dbms_output.put_line (str);
str1 := substr(str,instr(str,' ',1)+1 );
dbms_output.put_line (str1);
end;

Is This Answer Correct ?    2 Yes 0 No

how to truncate date and get only time part 9:20:00..

Answer / saisivakumar

select <column_name>,to_char (<column_name>,'fmdd month
yyyy fmhh:MI:ss am') from <table_name> where
condition;

Note: i have given for both date and time, pls use as u
want.

Is This Answer Correct ?    1 Yes 2 No

how to truncate date and get only time part 9:20:00..

Answer / parna

select to_char(sysdate,'HH24:MM:SS')from dual;

Is This Answer Correct ?    1 Yes 2 No

how to truncate date and get only time part 9:20:00..

Answer / kumar.t

Select Convert(varchar,getdate(),114) As DateTime

It is Only Run In Sql Server2000

By

Kumar .T

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Oracle General Interview Questions

It's Urgent? How to IMPORT .xls & .txt file into ORACLE?

5 Answers  


How to view the data files in the current database?

0 Answers  


How to delete multiple rows from a table in oracle?

0 Answers  


What is Trigger in Oracle?

0 Answers   MCN Solutions,


What is flashback Query ? And Use ?

4 Answers   Thermotech,






Can we create more than one constraint to column ?

6 Answers  


How to drop an existing table in oracle?

0 Answers  


What happens to the indexes if a table is recovered?

0 Answers  


What is meant by recursive hints ?

1 Answers  


Hello All, Could any one provide me FAQs/interview questions on oracle PL/SQL

1 Answers  


How many types of segments in Oracle?

0 Answers   MCN Solutions,


Explain the use of indexes option in exp command.

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)