Multiple choice technology databases

Select ename from emp where ename =”Scott”; This select statement executes successfully.

  1. True

  2. False

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

In standard SQL, character literals must be enclosed in single quotes ('Scott'). Double quotes are reserved for database identifiers like table or column names. Using double quotes for a string literal causes a compilation or execution error, making the statement false.