SQLを使用して、会社ごとにグループ化された日付に値を与えるにはどうすればよいですか?
現在のテーブル:
Date Company Employees
2012-04-28 Apple, Inc. 7543
2012-04-27 Apple, Inc. 7510
2012-04-26 Apple, Inc. 7484
2012-04-28 Google, Inc. 11303
2012-04-27 Google, Inc. 11300
2012-04-26 Google, Inc. 11280
2012-04-25 Google, Inc. 11278
2012-04-24 Google, Inc. 11254
希望するテーブル:
Date company_day Company Employees
2012-04-28 3 Apple, Inc. 7543
2012-04-27 2 Apple, Inc. 7510
2012-04-26 1 Apple, Inc. 7484
2012-04-28 5 Google, Inc. 11303
2012-04-27 4 Google, Inc. 11300
2012-04-26 3 Google, Inc. 11280
2012-04-25 2 Google, Inc. 11278
2012-04-24 1 Google, Inc. 11254
company_dayの値は、各会社の最も早い日付から始まります。company_dayは会社固有です。