Help for this page

Select Code to Download


  1. or download this
    mysql> SELECT * FROM `select` WHERE `select`.id > 100;
    
  2. or download this
    mysql> CREATE TABLE "test" (col INT);
    ERROR 1064: You have an error in your SQL syntax. (...)
    mysql> SET sql_mode='ANSI_QUOTES';
    mysql> CREATE TABLE "test" (col INT);
    Query OK, 0 rows affected (0.00 sec)