Mysql 长用函数

  1.  TO_DAYS 返回天数

    select to_days(now()) -- 返回天数(0年到现在的天数)

  2.  RAND()  返回 0到1之间的浮点数

    SELECT FLOOR(1 + (RAND() * 50)); -- 返回1到50的mysql随机整数

  3. group_concat 分组连接函数

    group_concat(列明) -- 使用,分割(4417000001,4417000003,4417000005,4417000010)

    group_concat(列名,分隔符) 

    group_concat 有长度限制的,环境变量group_concat_max_len该变

    SET GLOBAL group_concat_max_len=102400;

    SET SESSION group_concat_max_len=102400;

你可能感兴趣的:(Mysql 长用函数)