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

The SQL statement uses typographic (smart) quotes instead of standard ASCII quotes around 'Scott'. The string "Scott" uses opening and closing quote characters instead of straight quotes, which will cause a syntax error in SQL.