从mysql数据库显示学生出勤率

时间:2015-12-02 10:19:42

标签: php mysqli time-and-attendance

我有4张学生出勤表。

  1. 学生(sid,name,regno)
  2. classes(classid,startdate,enddate)
  3. 学生到班级(sid,classid)
  4. 课堂出勤(classid,sid,出勤,日期)
  5. 我想将班级的考勤数据显示为:

    <table>
    <tr>
    <th>RegNo</th>
    
    <th>Name</th>
    
    <th>Date 1</th>
    
    <th>Date 2</th>
    
    <th>so on</th>
    
    </tr>
    
    <tr>
    
    <td>1</td>
    
    <td>ABC</td>
    
    <td>Present</td>
    
    <td>Absent</td>
    
    <td>So on</td>
    
    </tr>
    
    </table>
    

    日期范围来自班级表。我想查询具有日期范围的表以及类的所有记录。 请帮我查询。提前谢谢。

0 个答案:

没有答案