Multiple choice technology databases

" in sybase is changed to ' in sql

  1. True

  2. False

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

Different database systems and SQL dialects use different string delimiters. Sybase and some older SQL variants use double quotes (") for string literals, while standard SQL and most modern databases use single quotes (') for string literals. Converting from Sybase to SQL requires changing all string delimiters from double to single quotes.