SlideShare a Scribd company logo
Databases

Creating Relational Databases
School Database
Student ID Student    Student     Form     Sex        Age       Class      Class     Room
           Surname    FirstName                                 Name       Teacher   Number
S10204     HALL       Taighan     10B      F          13        Maths101   PRJ       651
S10204     HALL       Taighan     10B      M          13        GEO101     RW        532
S10204     HALL       Taighan     10B      F          13        SCI10      CW        161
S10412     CRIST      Graeme      10D      M          14        GEO101     RW        532
S10412     CRIST      Graeme      10D      M          14        HIS101     HJD       541
S10101    CRIST      Graeme      10D      M          14        Maths101   PRJ       651
S10414     HASLETT    Oliver      10D      M          14        Maths101   PRJ       651
S10101     FUNG       JUNE        10A     F          15        Maths101   PRJ       651
S10101     FUNG       JUNE        10B     F          15        GEO101     HJD       532
S10101     FUNF      JUNE        10A      F          15        HIS101     HJD       541




           This is part of a database showing all students and their classes in a school.
Data integrity and Data Redundancy

These issues can have a significant impact on the ability for a database to actually
do the job that it is intended to do.

Data Integrity is the idea that information always keeps its meaning. This is
particularly difficult when database get really big if you imagine if the database
above includes every student and every class in the school it could contain over
10000 records.
Examples of Data integrity

Examples of Data integrity


 A simple typo means that it might mean that information gets lost if we search for
June in the data. This problem is much more likely because of the redundancies
issues we will look at later.

 This example can cause real problems it shows that the same information in the
database can mean two different things is s10101 Graeme or June. What happen is
s10101

 Here we have June in two classes? Which one is right? What if we need to fine
June in registration urgently
Hard to find?
They can be really hard to find in this Database there are more integrity errors can
you find them?
Bad or unnecessary Fields Names
Age is an example of a bad field name for the obvious reason that it can change at
anytime. It would be much better to use DOB as age can always be calculated and
of course it does not change.


Form may also be unnecessary in this case as the reference number is CODED to
give the form.


Can you explain the code?
School Database
Student ID Student   Student     Form   Sex   Age   Class      Class     Room
           Surname   FirstName                      Name       Teacher   Number
S10204     HALL      Taighan     10B    F     13    Maths101   PRJ       651
S10204     HALL      Taighan     10B    M     13    GEO101     RW        532
S10204     HALL      Taighan     10B    F     13    SCI10      CW        161
S10412     CRIST     Graeme      10D    M     14    GEO101     RW        532
S10412     CRIST     Graeme      10D    M     14    HIS101     HJD       541
S10101     CRIST     Graeme      10D    M     14    Maths101   PRJ       651
S10414     HASLETT   Oliver      10D    M     14    Maths101   PRJ       651
S10101     FUNG      JUNE        10A    F     15    Maths101   PRJ       651
S10101     FUNG      JUNE        10B    F     15    GEO101     HJD       532
S10101     FUNF      JUNE        10A    F     15    HIS101     HJD       541




          Table showing data redundancy .
Data Redundancy

Data redundancy is the where data needs to be entered and stored on more
than one occasion.

For example if you look at the table above you can see that we have entered
Oliver Haslett’s first name and surname every time we put him into a class.
This can cause problems such as increasing the chance of someone entering
his name wrong. It also means more time is needed to enter data and more
space is needed when it is saved.


There is a way around this …………
Relational Databases
The simple way to think about this is that when you create a table of data in a
database you should have fields which directly relate to the key field of the table.

In our table we can see that the Class teacher, Class Name and Room Number are
not related to the Student. The Student ID is unique so the first name, surname,
form, Sex is all related to the student but the other fields do not.

We can now look at how to remove redundancy issues a process called
normalization, although this can be very complex and we are only going to look it
is a simple way.


Student   Student   Student First Form   Sex Age Class Name   Class Teacher   Room
ID        Surname                                                             Number
S10204    HALL      Taighan      10B     F   13   Maths101    PRJ             651

S10204    HALL      Taighan      10B     M   13   GEO101      RW              532

S10204    HALL      Taighan      10B     F   13   SCI10       CW              161
Removing Redundancy
                 (“Normalization”)
If we create these tables we remove the redundancy but there is a problem.
Why?

     CLASS                                     STUDENT
     ClassID                                   StudentID
     Class Name                                Student First Name
     Class Teacher                             Student Surname
     Room Number                               Student DOB
                                               Student Form

 These tables have what is called a many to many relationship. That is there
 are many students in each class and there are many class for each student.
 This kind of relationship will not work in a database.
Step 2
To solve this problem we create an extra table which contains the StudentID and
ClassID for each student in each class.

What this does is remove the many to much relationship and replace it with
a one to many or many to one relationship.

That one student can be in many classes and one class has many students.
We can use the relationships to find the information we need in each case making
use of something called Queries that we will look at later.
How it looks
STUDENT
                                                         CLASS
StudentID
                                                         ClassID
FirstName
                                                         Class Name
Surname
                                                         Class Teacher
DOB
                                                         Room Number
Form

                          STUDENTTAKES
                          StudentID
                          ClassID


 This goes a long way to solving our problem but there remains a potential problem
 with the room number field which could give use problems in what we want to do
 with the data. Why ?
STEP 3 (optional?)
Room number is not actually related to the class. What happens if a class is in
more than one room for example? If you were to do the normalization properly
you would need to remove room Number and potentially create another table
Rooms as shown below. This is called an Entity Relationship Diagram and they are
used to show the data structure in a database.

This stage can sometimes be a really difficult to do as you really need to
understand what the data is going to be used for to see if it needs to be done.



       Student                      StudentTakes                        Class


                                                                     RoomClass


                                                                        Room
Try it for your self
Let’s imagine you want to keep a database of films and actors in those films. Using the
list of fields below can you create the table structure which would allow find
information about films and the actors in them?



Film      Film date Film           Film Genre Actor First   Actor       Actor   Director    Actor
Title               Description                Name         Surname     DOB                 Sex
Titanic   1997      Film about a   Romance     Kate         Winslet     1975    James       F
                    sinking ship                                                Cameroon
Titanic   1997      Film about a   Romance     Leonardo     Di Caprio   1974    James       M
                    sinking ship                                                Cameroon
Star      1977      Film about     Space       Mark         Hamill      1951    George Lucas M
Wars                space
Star      1977      Film about     Space       Harrison     Ford        1942    George Lucas M
Wars                space

More Related Content

Viewers also liked

Dr Sajjad Ahmed Paracha
Dr Sajjad Ahmed ParachaDr Sajjad Ahmed Paracha
Dr Sajjad Ahmed ParachaAshfaq Ahmed
 
Basic Relational Databases
Basic Relational DatabasesBasic Relational Databases
Basic Relational DatabasesKevin Lester
 
V games 4 min 40 sec
V games  4 min 40 secV games  4 min 40 sec
V games 4 min 40 secBombBoyB52
 
Crc venturee 2011 1 min
Crc venturee 2011    1 minCrc venturee 2011    1 min
Crc venturee 2011 1 minBombBoyB52
 
Venture crew 169
Venture crew 169Venture crew 169
Venture crew 169BombBoyB52
 
Shooting & climbing weekend march 2012 website 3min 20 sec
Shooting & climbing weekend march 2012 website 3min 20 secShooting & climbing weekend march 2012 website 3min 20 sec
Shooting & climbing weekend march 2012 website 3min 20 secBombBoyB52
 
Prezentacja programu Audacity.
Prezentacja programu Audacity.Prezentacja programu Audacity.
Prezentacja programu Audacity.komarex
 
Public speaking
Public speakingPublic speaking
Public speaking
Rizki Tya Perdhana
 

Viewers also liked (8)

Dr Sajjad Ahmed Paracha
Dr Sajjad Ahmed ParachaDr Sajjad Ahmed Paracha
Dr Sajjad Ahmed Paracha
 
Basic Relational Databases
Basic Relational DatabasesBasic Relational Databases
Basic Relational Databases
 
V games 4 min 40 sec
V games  4 min 40 secV games  4 min 40 sec
V games 4 min 40 sec
 
Crc venturee 2011 1 min
Crc venturee 2011    1 minCrc venturee 2011    1 min
Crc venturee 2011 1 min
 
Venture crew 169
Venture crew 169Venture crew 169
Venture crew 169
 
Shooting & climbing weekend march 2012 website 3min 20 sec
Shooting & climbing weekend march 2012 website 3min 20 secShooting & climbing weekend march 2012 website 3min 20 sec
Shooting & climbing weekend march 2012 website 3min 20 sec
 
Prezentacja programu Audacity.
Prezentacja programu Audacity.Prezentacja programu Audacity.
Prezentacja programu Audacity.
 
Public speaking
Public speakingPublic speaking
Public speaking
 

Recently uploaded

Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Nexer Digital
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
RinaMondal9
 
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdfSAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
Peter Spielvogel
 
UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..
UiPathCommunity
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
KAMESHS29
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 

Recently uploaded (20)

Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
 
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdfSAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
 
UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 

Basic Relational Databases

  • 2. School Database Student ID Student Student Form Sex Age Class Class Room Surname FirstName Name Teacher Number S10204 HALL Taighan 10B F 13 Maths101 PRJ 651 S10204 HALL Taighan 10B M 13 GEO101 RW 532 S10204 HALL Taighan 10B F 13 SCI10 CW 161 S10412 CRIST Graeme 10D M 14 GEO101 RW 532 S10412 CRIST Graeme 10D M 14 HIS101 HJD 541 S10101  CRIST Graeme 10D M 14 Maths101 PRJ 651 S10414 HASLETT Oliver 10D M 14 Maths101 PRJ 651 S10101 FUNG JUNE 10A F 15 Maths101 PRJ 651 S10101 FUNG JUNE 10B F 15 GEO101 HJD 532 S10101 FUNF  JUNE 10A F 15 HIS101 HJD 541 This is part of a database showing all students and their classes in a school.
  • 3. Data integrity and Data Redundancy These issues can have a significant impact on the ability for a database to actually do the job that it is intended to do. Data Integrity is the idea that information always keeps its meaning. This is particularly difficult when database get really big if you imagine if the database above includes every student and every class in the school it could contain over 10000 records.
  • 4. Examples of Data integrity Examples of Data integrity  A simple typo means that it might mean that information gets lost if we search for June in the data. This problem is much more likely because of the redundancies issues we will look at later.  This example can cause real problems it shows that the same information in the database can mean two different things is s10101 Graeme or June. What happen is s10101  Here we have June in two classes? Which one is right? What if we need to fine June in registration urgently
  • 5. Hard to find? They can be really hard to find in this Database there are more integrity errors can you find them?
  • 6. Bad or unnecessary Fields Names Age is an example of a bad field name for the obvious reason that it can change at anytime. It would be much better to use DOB as age can always be calculated and of course it does not change. Form may also be unnecessary in this case as the reference number is CODED to give the form. Can you explain the code?
  • 7. School Database Student ID Student Student Form Sex Age Class Class Room Surname FirstName Name Teacher Number S10204 HALL Taighan 10B F 13 Maths101 PRJ 651 S10204 HALL Taighan 10B M 13 GEO101 RW 532 S10204 HALL Taighan 10B F 13 SCI10 CW 161 S10412 CRIST Graeme 10D M 14 GEO101 RW 532 S10412 CRIST Graeme 10D M 14 HIS101 HJD 541 S10101 CRIST Graeme 10D M 14 Maths101 PRJ 651 S10414 HASLETT Oliver 10D M 14 Maths101 PRJ 651 S10101 FUNG JUNE 10A F 15 Maths101 PRJ 651 S10101 FUNG JUNE 10B F 15 GEO101 HJD 532 S10101 FUNF JUNE 10A F 15 HIS101 HJD 541 Table showing data redundancy .
  • 8. Data Redundancy Data redundancy is the where data needs to be entered and stored on more than one occasion. For example if you look at the table above you can see that we have entered Oliver Haslett’s first name and surname every time we put him into a class. This can cause problems such as increasing the chance of someone entering his name wrong. It also means more time is needed to enter data and more space is needed when it is saved. There is a way around this …………
  • 9. Relational Databases The simple way to think about this is that when you create a table of data in a database you should have fields which directly relate to the key field of the table. In our table we can see that the Class teacher, Class Name and Room Number are not related to the Student. The Student ID is unique so the first name, surname, form, Sex is all related to the student but the other fields do not. We can now look at how to remove redundancy issues a process called normalization, although this can be very complex and we are only going to look it is a simple way. Student Student Student First Form Sex Age Class Name Class Teacher Room ID Surname Number S10204 HALL Taighan 10B F 13 Maths101 PRJ 651 S10204 HALL Taighan 10B M 13 GEO101 RW 532 S10204 HALL Taighan 10B F 13 SCI10 CW 161
  • 10. Removing Redundancy (“Normalization”) If we create these tables we remove the redundancy but there is a problem. Why? CLASS STUDENT ClassID StudentID Class Name Student First Name Class Teacher Student Surname Room Number Student DOB Student Form These tables have what is called a many to many relationship. That is there are many students in each class and there are many class for each student. This kind of relationship will not work in a database.
  • 11. Step 2 To solve this problem we create an extra table which contains the StudentID and ClassID for each student in each class. What this does is remove the many to much relationship and replace it with a one to many or many to one relationship. That one student can be in many classes and one class has many students. We can use the relationships to find the information we need in each case making use of something called Queries that we will look at later.
  • 12. How it looks STUDENT CLASS StudentID ClassID FirstName Class Name Surname Class Teacher DOB Room Number Form STUDENTTAKES StudentID ClassID This goes a long way to solving our problem but there remains a potential problem with the room number field which could give use problems in what we want to do with the data. Why ?
  • 13. STEP 3 (optional?) Room number is not actually related to the class. What happens if a class is in more than one room for example? If you were to do the normalization properly you would need to remove room Number and potentially create another table Rooms as shown below. This is called an Entity Relationship Diagram and they are used to show the data structure in a database. This stage can sometimes be a really difficult to do as you really need to understand what the data is going to be used for to see if it needs to be done. Student StudentTakes Class RoomClass Room
  • 14. Try it for your self Let’s imagine you want to keep a database of films and actors in those films. Using the list of fields below can you create the table structure which would allow find information about films and the actors in them? Film Film date Film Film Genre Actor First Actor Actor Director Actor Title Description Name Surname DOB Sex Titanic 1997 Film about a Romance Kate Winslet 1975 James F sinking ship Cameroon Titanic 1997 Film about a Romance Leonardo Di Caprio 1974 James M sinking ship Cameroon Star 1977 Film about Space Mark Hamill 1951 George Lucas M Wars space Star 1977 Film about Space Harrison Ford 1942 George Lucas M Wars space