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

MySQL数据库

开发平台:

Visual C++

  1. select 1;
  2. 1
  3. 1
  4. select 2;
  5. select 3;
  6. select 4||||
  7. 2
  8. 2
  9. 3
  10. 3
  11. 4
  12. 4
  13. select 5;
  14. select 6;
  15. select 50, 'abc';'abcd'
  16. 5
  17. 5
  18. 6
  19. 6
  20. 50 abc
  21. 50 abc
  22. select "abcd'";'abcd'
  23. abcd'
  24. abcd'
  25. select "'abcd";'abcd'
  26. 'abcd
  27. 'abcd
  28. select 5'abcd'
  29. 5
  30. 5
  31. select 'finish';
  32. finish
  33. finish
  34. flush status;
  35. create table t1 (i int);
  36. insert into t1 values (1);
  37. select * from t1 where i = 1;
  38. insert into t1 values (2),(3),(4);
  39. select * from t1 where i = 2;
  40. select * from t1 where i = 3||||
  41. i
  42. 1
  43. i
  44. 2
  45. i
  46. 3
  47. show status like 'Slow_queries'||||
  48. Variable_name Value
  49. Slow_queries 2
  50. drop table t1||||