Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Normalization

Author  Topic 

ProatSql1
Starting Member

1 Post

Posted - 2009-11-15 : 08:13:57
Hi am new to this forum and also learning sql.I was doing a project that i have to normalize timetable so please i just need someone to check if am right or wrong for what have done so far.Thank you

this are the columns for the timetable
deptcode
module1
title1
module2
title2
module3
title3
group1
group2
group3
group4
group5
type
dayno
start
finish
weeks
lecturer1
lecturer2
lecturer3
lecturer4
lecturer5
lecturer6
lecturer7
lecturer8
room1
room2
room3
This is my first normal form
deptID
deptcode
module
title3
group
type
dayno
start
finish
weeks
lecturer
room
This is my second normal form and i created seperate tables for em
First table
deptID
deptcode
group
dayno
weeks
second table
moduleID
module
title
third table
LecturerID
Lecturer
type
start
finish

Please tell me if am right or wrong and the type columns hold values for the type of lecture if it is a class,test or lecture
   

- Advertisement -