我有 2 个表用于学费管理项目
学生表,其中包含学生姓名班级和其他字段
,并且 tbl_fee_rates 是根据每月费率保留有关班级费用信息的表,应使用 tbl_fee_rates 表计算费率
tbl_fee_rates
-------------------------------------
id date class rate |
-------------------------------------
1 31-12-2013 5th 200 |
2 31-12-2013 6th 500 |
|
3 27-03-2013 5th 250 |
4 01-04-2013 6th 600 |
|
5 29-05-2013 5th 300 |
|
6 29-09-2013 5th 320 |
-------------------------------------
另一张桌子是
tbl_Students
-----------------------
ID Name Class |
-----------------------
1 Alex 5th |
1 Alex 6th |
-----------------------
我需要如下视图
tbl_Students
--------------------------------------------------------------------------------------
ID Name Class JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC |
--------------------------------------------------------------------------------------
1 Alex 5th 200 200 200 250 250 300 300 300 300 320 320 320 |
1 Alex 6th 500 500 500 500 500 500 500 600 600 600 600 600 |
--------------------------------------------------------------------------------------
在上面的视图中,一月,二月...十二月是几个月,其值是一个月内各个学生的费用,使用表(tbl_fee_rates)计算
如果它不可能通过,我怎么能得到这个,有什么选择吗?