comments.test
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Testing of comments
  3. #
  4. select 1+2/*hello*/+3;
  5. select 1 /* long
  6. multi line comment */;
  7. !$1065 /* empty query */;
  8. select 1 /*!32301 +1 */;
  9. select 1 /*!52301 +1 */;
  10. select 1--1;
  11. # Note that the following returns 4 while it should return 2
  12. # This is because the mysqld server doesn't parse -- comments
  13. select 1 --2
  14. +1;
  15. select 1 # The rest of the row will be ignored
  16. ;