Changes between Version 27 and Version 28 of P2


Ignore:
Timestamp:
06/29/26 13:36:05 (8 days ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • P2

    v27 v28  
    77- Foreign keys are marked with * at the end of their name and the referenced entity is written in parentheses.
    88
    9 == Tables
     9== Tables ==
    1010'''University''' ( Id, Name, Location, isprivate )
    1111
     
    2222'''Advice''' ( [Student_Id* (Student), Professor_Id* (Professor)], Start_Date, End_Date )
    2323
    24 '''Affiliated''' ( [University_Id* (University), Professor_Id* (Professor)])
    25 ----
     24'''Affiliated''' ( [University_Id* (University), Professor_Id* (Professor)] )
    2625
     26'''Teach''' ( [Professor_Id* (Professor), Subject_Id* (Subject)] )
    2727
    2828== DDL script for creating the database schema and objects:
     
    6565'''Affiliated''' ( [University_Id* (University), Professor_Id* (Professor)] )
    6666
     67'''Teach''' ( [Professor_Id* (Professor), Subject_Id* (Subject)] )
     68
    6769----
    6870