comments.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小: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. --error 1065
  8.  ;
  9. select 1 /*!32301 +1 */;
  10. select 1 /*!52301 +1 */;
  11. select 1--1;
  12. # Note that the following returns 4 while it should return 2
  13. # This is because the mysqld server doesn't parse -- comments
  14. select 1 --2
  15. +1;
  16. select 1 # The rest of the row will be ignored
  17. ;
  18. /* line with only comment */;
  19. # End of 4.1 tests