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

MySQL数据库

开发平台:

Visual C++

  1. select format(1.5555,0),format(123.5555,1),format(1234.5555,2),format(12345.55555,3),format(123456.5555,4),format(1234567.5555,5),format("12345.2399",2);
  2. format(1.5555,0) format(123.5555,1) format(1234.5555,2) format(12345.55555,3) format(123456.5555,4) format(1234567.5555,5) format("12345.2399",2)
  3. 2 123.6 1,234.56 12,345.556 123,456.5555 1,234,567.55550 12,345.24
  4. select inet_ntoa(inet_aton("255.255.255.255.255.255.255.255"));
  5. inet_ntoa(inet_aton("255.255.255.255.255.255.255.255"))
  6. NULL
  7. select inet_aton("255.255.255.255.255"),inet_aton("255.255.1.255"),inet_aton("0.1.255");
  8. inet_aton("255.255.255.255.255") inet_aton("255.255.1.255") inet_aton("0.1.255")
  9. 1099511627775 4294902271 65791
  10. select inet_ntoa(1099511627775),inet_ntoa(4294902271),inet_ntoa(511);
  11. inet_ntoa(1099511627775) inet_ntoa(4294902271) inet_ntoa(511)
  12. NULL 255.255.1.255 0.0.1.255
  13. select hex(inet_aton('127'));
  14. hex(inet_aton('127'))
  15. 7F
  16. select hex(inet_aton('127.1'));
  17. hex(inet_aton('127.1'))
  18. 7F000001
  19. select hex(inet_aton('127.1.1'));
  20. hex(inet_aton('127.1.1'))
  21. 7F010001
  22. select length(uuid()), charset(uuid()), length(unhex(replace(uuid(),_utf8'-',_utf8'')));
  23. length(uuid()) charset(uuid()) length(unhex(replace(uuid(),_utf8'-',_utf8'')))
  24. 36 utf8 16
  25. select length(format('nan', 2)) > 0;
  26. length(format('nan', 2)) > 0
  27. 1
  28. select concat("$",format(2500,2));
  29. concat("$",format(2500,2))
  30. $2,500.00
  31. create table t1 ( a timestamp );
  32. insert into t1 values ( '2004-01-06 12:34' );
  33. select a from t1 where left(a+0,6) in ( left(20040106,6) );
  34. a
  35. 2004-01-06 12:34:00
  36. select a from t1 where left(a+0,6) = ( left(20040106,6) );
  37. a
  38. 2004-01-06 12:34:00
  39. select a from t1 where right(a+0,6) in ( right(20040106123400,6) );
  40. a
  41. 2004-01-06 12:34:00
  42. select a from t1 where right(a+0,6) = ( right(20040106123400,6) );
  43. a
  44. 2004-01-06 12:34:00
  45. select a from t1 where mid(a+0,6,3) in ( mid(20040106123400,6,3) );
  46. a
  47. 2004-01-06 12:34:00
  48. select a from t1 where mid(a+0,6,3) = ( mid(20040106123400,6,3) );
  49. a
  50. 2004-01-06 12:34:00
  51. drop table t1;