Enter your Sign-on user name and password.

Forgot password?
  • Follow us on:
Loading video...

Start Learning Now

Our free lessons will get you started (Flash® 10 required).
Get immediate access to our entire library.

Sign up for Educator.com

Features Overview

  • Get on-demand access to our complete library
  • Search and jump to exactly what you need to learn
  • Track your progress
  • Download practice and lesson files
  • *Ask questions and get answers from our community & instructors

Linking Tables

  • Database normalization is a process that involves structuring a relational database to help reduce common problems involving:
    • Difficulties in searching data
    • Having large numbers of empty fields
    • Needing to re-structure tables frequently
    • Redundant storage of the same data
  • A foreign key is a column in one table whose value represents a primary key of another table.
  • A linking table contains two or more foreign key values in each row that serve to link one row of one table with one row of another table.
  • Tables can use more than one column to comprise its primary key. Such a table is defined using the following syntax:
    CREATE TABLE depts_items (
    deptID INT UNSIGNED,
    itemID INT UNSIGNED,
    PRIMARY KEY (deptID, itemID)
    );

Linking Tables

Lecture Slides are screen-captured images of important points in the lecture. Students can download and print out these lecture slide images to do practice problems as well as take notes while watching the lecture.

Advanced PHP Training with MySQL