Multiple choice sql Which of following is used in SQL command to Comment Multiple Lines? /**/ REM <%--%> Reveal answer Fill a bubble to check yourself A Correct answer Explanation /*/ is the C-style block comment syntax used in SQL for multiline comments, while REM is typically a single-line comment in some SQL dialects. ** is not a valid comment syntax, and <%--%> is used in JSP/ASP for server-side comments, not SQL.