/*!….*/ comment in mysql
/*!….*/ comment in mysql
MySQL Server parses and executes the code within /*! and ..*/ as it would any other SQL statement, but other SQL servers will ignore the extensions.
Syntax:
/*! MySQL-specific code */
Example :
CREATE /*! TEMPORARY */ TABLE table1 SELECT * FROM table2;
Mysql Create a temporary table table1. But other SQL servers create a normal table.
