![]()  | 
Online Suche im Handbuch |  ![]()  | 
Der MySQL Server ignoriert nach C und PERL Syntax Kommentare. Alles, was in den Statements /* ....*/ eingeschlossen ist, oder nach dem # Zeichen in einer Zeile folgt, wird als Kommentar ignoriert.
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;
 
 
![]()  | 
Online Suche im Handbuch |  ![]()  |