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

What does plvtab enables you to do when you showthe contents of pl/sql tables?

0 Answers  


Is it possible to link two groups inside a cross products after the cross products group has been created?

0 Answers  


How to pronounce postgresql?

0 Answers  


what are date and time data types? : Sql dba

0 Answers  


What is file based approach?

0 Answers  






What is trigger point?

0 Answers  


how can you create an empty table from an existing table? : Sql dba

0 Answers  


Why do we use cursors?

0 Answers  


Is sql dba a good career? : SQL DBA

0 Answers  


How do sql triggers work?

0 Answers  


What is delimiter sql?

0 Answers  


How do you bind variables in pl sql?

0 Answers  


Categories