Multiple choice technology databases

Output of the below two queries would be same.. 1.select 1 from dual; 2.select '1' from dual;

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

While the first query returns a numeric literal and the second returns a character literal, their standard text output representations are identical in most query tools. Thus, the visual result or output value of both queries is effectively the same.