How do I comment out a single line in MySQL?
Single line comments start with — . Any text between — and the end of the line will be ignored (will not be executed). How do I comment out a line in MySQL? MySQL Server supports three comment styles: From a # character to the end of the line. From a — sequence to the end of the line. In …