美文网首页
mysql-行累计

mysql-行累计

作者: cure_py | 来源:发表于2017-07-04 14:38 被阅读0次

    http://blog.sina.com.cn/s/blog_82bc42b10106dhve.html
    单行累计:比如:col2=col1+col2;col3 = col1+col2+col3……
    在我们需要把twg_energy_quantity 这一列按照日期累计求和

    select 
    (select sum(twg_energy_quantity) from tmp where t.twg_program_date >=twg_program_date)sum_quantity,
    t.twg_energy_quantity,t.twg_program_date from tmp t ;
    

    相关文章

      网友评论

          本文标题:mysql-行累计

          本文链接:https://www.haomeiwen.com/subject/amfxhxtx.html