Answers for "how do you comment in mysql workbench"

SQL
1

how do you comment in mysql workbench

mysql> SELECT 1+1;     # This comment continues to the end of line
mysql> SELECT 1+1;     -- This comment continues to the end of line
mysql> SELECT 1 /* this is an in-line comment */ + 1;
mysql> SELECT 1+
/*
this is a
multiple-line comment
*/
1;
Posted by: Guest on January-28-2021
0

comments in mysql

#this is a comment
-- this is a comment but requires a whitespace/tab/newline after the double -
Posted by: Guest on December-26-2020

Code answers related to "how do you comment in mysql workbench"

Code answers related to "SQL"

Browse Popular Code Answers by Language