`
範憂樂
  • 浏览: 1770 次
社区版块
存档分类
最新评论
文章列表
/*毫秒时间格式化*/ var format = function(time, format){     var t = new Date(time);     var tf = function(i){return (i < 10 ? '0' : '') + i};     return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function(a){         switch(a){             case 'yyyy':                 return tf(t. ...
mysql分组后将同组多行记录的某个字段合并成一条记录的某个字段,中间用逗号分开 select ID,group_concat(NAME) as NAME from table group by ID; select ID,group_concat(NAME SEPARATOR ';') as NAME from table group by ID;
Global site tag (gtag.js) - Google Analytics