Answers for "COMMENT sql command"

SQL
16

sql comment'

/* 
This is a MULTI-LINE Comment
*/ 
-- This is Single-Line Comment
Posted by: Guest on August-28-2021
2

sql comments

Single line comments start with –- Any text after these 2 characters to the end of the line will be
ignored.
Multiline comments start with /* and end with */. They stretch across multiple lines until the
closing characters have been found.
-- My Select query
/*
This is my select query.
It grabs all rows of data from the users table
*/
Posted by: Guest on January-07-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language