what is the difference between implicit conversions and
explicit conversions?
Answer Posted / 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 |
Post New Answer View All Answers
What is auto increment feature in sql?
what is the difference between delete and truncate statement in sql? : Sql dba
What are the operators used in select statements?
What is a common use of group by in sql?
how is exception handling handled in mysql? : Sql dba
What is the difference between partition and index?
What are the disadvantages of not performing database normalization?
What is the difference between function and procedure in pl/sql?
What is difference between stored procedures and application procedures?
How many developers work on postgresql?
explain advantages of innodb over myisam. : Sql dba
Is sql open source?
What is a record in a database?
What is data profiling in sql?
Differentiate between syntax and runtime errors.