0

在此处输入图像描述

学生号不是自动递增的主键。我们的数据库中有 10000 个用户,但他们使用自己的键。我们有另一种方法来限制重复的 id。我不行。我能够使用 jquery/ajax 获取所有复选框值。现在我想将所有数据发送到数据库。那么我如何为此创建数据库表?我想我想为此创建 2,3 个表?

我使用这个 jquery 来获取所有选中/未选中的复选框值

   var serialized = $('input:checkbox').map(function() {
   return { name: this.name, value: this.checked ? this.value : "false" };
 });
4

2 回答 2

1

首先,什么是“Piyumix”?当您不知道自己在处理什么时,很难命名一张桌子。

schedule
-------
id
id_student
id_subject
date (month?)

subjects
--------
id
name

students
--------
id
name
于 2013-05-21T22:17:34.200 回答
1

为了更有条理,你需要

    Schedule Table

    scheduleId int primary-key
    classId int
    month date
    value bool

    Class Table

    classId int
    className varchar


   Student Table

   studentId int
   studentName varchar

   StudentSchecdule Table

   tablestudentScheduleId int
   studentId int
   scheduleId varchar
于 2013-05-21T22:17:40.737 回答