Multiple choice technology programming languages

The SQL command used to comment multiple lines is

  1. /* */


  2. rem

  3. None of the Above

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

SQL uses /* / for multi-line comments, similar to many C-style languages. Anything between / and / is treated as a comment and ignored by the SQL parser. The ** option is not valid SQL comment syntax, and 'rem' is used in some SQL dialects like SQL Server for single-line comments, but not for multi-line blocks.