comments.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. select 1+2/*hello*/+3;
  2. 1+2/*hello*/+3
  3. 6
  4. select 1 /* long
  5. multi line comment */;
  6. 1
  7. 1
  8. ;
  9. ERROR 42000: Query was empty
  10. select 1 /*!32301 +1 */;
  11. 1 /*!32301 +1
  12. 2
  13. select 1 /*!52301 +1 */;
  14. 1
  15. 1
  16. select 1--1;
  17. 1--1
  18. 2
  19. select 1 --2
  20. +1;
  21. 1 --2
  22. +1
  23. 4
  24. select 1 # The rest of the row will be ignored
  25. ;
  26. 1
  27. 1
  28. /* line with only comment */;