|
|
|
ขอความช่วยเหลือหน่อยครับ ช่วยวิเคราะห์การเก็บข้อมูลให้ผมหน่อยครับ ว่าจะต้องสร้างตารางกี่ตาราง |
|
|
|
|
|
|
|
อธิบายระบบหน่อยสิครับ ให้มาแค่นี้งง
|
|
|
|
|
Date :
2011-05-23 15:31:48 |
By :
naskw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็เห็นมีตาราง(Table) อยู่ตารางเดียว
|
|
|
|
|
Date :
2011-05-23 22:24:13 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สร้างตารางเดียวครับ ชื่อ tblStudent (หรืออาจชื่ออื่นก็ได้นะครับ)
Filed มีทั้งหมด 8 อันครับ
1. ID = ลำดับที่
2. RegisNum = รหัส
3. NameSurName = ชื่อ-นามสกุล
4. Date_1 = วันที่ (23/5/2554)
5. Date_2 = วันที่ (24/5/2554)
6. Date_3 = วันที่ (25/5/2554)
7. Date_4 = วันที่ (26/5/2554)
8. Date_5 = วันที่ (27/5/2554)
น่าจะประมาณนี้นะครับ...ช่วยๆ กันนะ
|
ประวัติการแก้ไข 2011-05-24 09:15:47
|
|
|
|
Date :
2011-05-23 22:37:39 |
By :
prach_kp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็ข้อมูลไม่เพียงพอ เลยแซวเล่นไปงั้นอะครับผม อิอิ
ผมว่าวันที่มันไม่ได้มีแค่นั้นแน่นอน ถ้าเป็นเหมือนที่ผมคิด มันต้อง 2 table ขึ้นไป
|
|
|
|
|
Date :
2011-05-24 00:53:51 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
create table students(
AutoID int(6) not null auto_increment primary key,
ID int(3) default null,
StudentCode char(10) default null, // จะเป็น int(10) unsigned ก็ได้ครับ
Fullname varchar(80) default null,
status enum('void') default null,
comment varchar(100) default null,
index(ID),
index(StudentCode),
index(Fullname),
unique(ID,StudentCode)
)engine=myisam default charset utf8 collate utf8_general_ci;
create table absent(
StudentCode char(10) default null,
absentDate date default null,
index(StudentCode),
index(absentDate)
)engine=myisam default charset utf8 collate utf8_general_ci;
ให้ข้อมูลมาน้อยไป ออกแบบตารางให้ลำบากครับ ได้คร่าวๆแค่เนี้ย..........................
|
|
|
|
|
Date :
2011-05-24 10:27:04 |
By :
Unidentifier |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|