what is the difference between implicit conversions and
explicit conversions?

Answers were Sorted based on User's Feedback



what is the difference between implicit conversions and explicit conversions?..

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

what is the difference between implicit conversions and explicit conversions?..

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

Post New Answer

More SQL PLSQL Interview Questions

How do I run a sql query?

0 Answers  


How do u count no of rows in a table?

8 Answers   CTS,


What is sql scripting?

0 Answers  


Is sql the best database?

0 Answers  


What is sql in java?

0 Answers  






What is a null value?

0 Answers  


What is an ndf file?

0 Answers  


How does one load ebcdic data? : aql loader

0 Answers  


How we can create a table in pl/sql block. Insert records into it? Is it possible by some procedure or function? Please give example?

0 Answers  


Which is faster count (*) or count 1?

0 Answers  


What does a pl/sql package consist of?

0 Answers  


we have a package and we have grants to execute that package inside of that we have table, here we don't have privileges to this table? whether this package will execute or not?

3 Answers   TCS,


Categories