トップに戻る
tags
MySQLで累計を求めるには変数を使うと簡単です。
SET @a;
SELECT data_id, price, @a:=@a+price as price_ruikei FROM my_table ORDER BY modified_date;
edit