what is the difference between implicit conversions and
explicit conversions?
Answers were Sorted based on User's Feedback
Answer / johncenzer
In an explicit conversion you tell the database how to do
the converion
ex: Select *
from some_table t...
WHERE t.invoice_date='&&pDate'TO_DATE('&&pDate')
or with format
TO_DATE('&&pDate','DD-MON-YYYY')
An implicit conversion is done by the database itself
ex. Select *
from some_table t...
WHERE t.invoice_date='&&pDate'
Oracle will try to convert the pDate into a date.
Is This Answer Correct ? | 11 Yes | 0 No |
Answer / suman
hi here it is, implicit cursor default by database, where
as explicit cursor is defined by user customized.
Is This Answer Correct ? | 2 Yes | 6 No |
how to get the third quarter of employee details from emp?
how to implement one-to-one, one-to-many and many-to-many relationships while designing tables? : Sql dba
Write a sql query to get the third highest salary of an employee from employee_table?
Which one is faster ienumerable or iqueryable?
write a procedure to print a statement or number not using "dbms_output.put_line" package.write a procedure instead of it using procdure name as "print" ex:- declare a number:=2; begin print(a); end; /* when U type above procedure 2 have to should be printed*/
Is drop table faster than truncate?
Can there be 2 primary keys in a table?
Why stored procedure is better than query?
Define implicit and explicit cursors.
What is the difference between row level and statement level trigger?
What is the syntax to add a record to a table?
What is secondary key?