how to store only time in a data base table

Answers were Sorted based on User's Feedback



how to store only time in a data base table..

Answer / sudipta santra

No problem, There are 2 ways for doing this:

1. If the field of the table is timezone then you can set
data or insert data of timezone i.e the timezone is upto
milliseconds.

eg. insert into timetab(time_col) values(select
sysdbtimezone from dual);

2. If the field is varchar2 then you can set the value or
insert the time stamp like that:

insert into timetab(time_col)
values(substr(to_char(sysdate,'DD-MON-RRRR'),13);

Is This Answer Correct ?    2 Yes 1 No

how to store only time in a data base table..

Answer / ns

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

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Oracle General Interview Questions

What are the advantages of oracle 12c?

0 Answers  


Can a field be used in a report without it appearing in any data group ?

4 Answers   Oracle,


What is java oracle used for?

0 Answers  


What is the difference between SQL, DDL, and DML?

7 Answers   BeBo Technologies, Wipro,


How to use attributes of the implicit cursor in oracle?

0 Answers  






Can objects of the same schema reside in different tablespace?

0 Answers  


Explain 1st, 2nd, 3rd normalization form of data base

3 Answers   KH, Thermotech,


Can a Tablespace hold objects from different Schemes ?

3 Answers  


Difference between join and a subquery?

8 Answers   Base Automation, NMDC,


What are internal user account in oracle?

0 Answers  


Explain the types of exception?

0 Answers  


State and explain about oracle instance?

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)