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

MySQL数据库

开发平台:

Visual C++

  1. CASE "b" when "a" then 1 when "b" then 2 END
  2. 2
  3. CASE "c" when "a" then 1 when "b" then 2 END
  4. NULL
  5. CASE "c" when "a" then 1 when "b" then 2 ELSE 3 END
  6. 3
  7. CASE BINARY "b" when "a" then 1 when "B" then 2 WHEN "b" then "ok" END
  8. ok
  9. CASE "b" when "a" then 1 when binary "B" then 2 WHEN "b" then "ok" END
  10. ok
  11. CASE concat("a","b") when concat("ab","") then "a" when "b" then "b" end
  12. a
  13. CASE when 1=0 then "true" else "false" END
  14. false
  15. CASE 1 when 1 then "one" WHEN 2 then "two" ELSE "more" END
  16. one
  17. CASE 2.0 when 1 then "one" WHEN 2.0 then "two" ELSE "more" END
  18. two
  19. (CASE "two" when "one" then "1" WHEN "two" then "2" END) | 0
  20. 2
  21. (CASE "two" when "one" then 1.00 WHEN "two" then 2.00 END) +0.0
  22. 2.00
  23. case 1/0 when "a" then "true" else "false" END
  24. false
  25. case 1/0 when "a" then "true" END
  26. NULL
  27. (case 1/0 when "a" then "true" END) | 0
  28. NULL
  29. (case 1/0 when "a" then "true" END) + 0.0
  30. NULL
  31. case when 1>0 then "TRUE" else "FALSE" END
  32. TRUE
  33. case when 1<0 then "TRUE" else "FALSE" END
  34. FALSE
  35. fcase count(*)
  36. 0 2
  37. 2 1
  38. 3 1
  39. fcase count(*)
  40. nothing 2
  41. one 1
  42. two 1