A. SELECT 'The first_name is " || first_name || " FROM (select 'user' first_name from dual); --O/P = ORA-00923: FROM keyword not found where expected
B. SELECT 'The first_name is ''' || first_name || '''' FROM (select 'user' first_name from dual); --O/P = The first_name is 'user'
C. SELECT 'The first_name is ''' || first_name || ''' FROM (select 'user' first_name from dual); --O/P = ORA-00923: FROM keyword not found where expected
D. SELECT 'The first_name is ' || first_name || '' FROM (select 'user' first_name from dual); --O/P = The first_name is user
E. SELECT 'The first_name is \" || first_name || '\" FROM (select 'user' first_name from dual); --O/P = ORA-24450: Cannot pre-process OCI statement
it depends on quotation mark, since we can not copy from this question normally you have to guess where are double qoutes and where are single ones, but if it like that:
SELECT 'The first_name is ' " || first_name || ' ' " FROM temp; (column name || first_name || ' ' )
SELECT 'The first_name is ' " || first_name || ' " FROM temp; (column name || first_name || ' )
SELECT 'The first_name is ' || first_name || ' ' FROM temp; ( The first_name is Jhon )
then 3 answers are right: BCD
Why its BD ? explain the reason logically & don't tell me I tested it.
In the exam there will be no tool to test anything if something changed so we need to understand the logic please.
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
RIDA_007
1 month, 2 weeks agoarchit4321
2 months, 1 week agoyaya32
5 months, 3 weeks agolucemqy
7 months, 3 weeks agoSushmasri
11 months, 1 week agojelenadinere_1
11 months, 2 weeks agozouve
1 year agoCyberP
1 year, 1 month agokuff
1 year, 2 months agopmeyer
1 year, 2 months agoMooonLight
1 year, 2 months agoPoke90
1 year, 3 months agoOrakol
1 year, 4 months agojfc1
1 year, 5 months agodexdinh91
1 year, 5 months agocadcadley
1 year, 5 months agoViviana3184
1 year, 6 months ago