Some suggestions re:Naming objects
Use only letters and numbers (exception is the underscore) for object names.
Do
not use spaces, punctuation or special characters in object names.
Do not begin an object name with a number.
---------------------------------------------------------------------
Field name: "
No of bookings"
Is their a field: "Yes of bookings" ??
Better would be "Num of bookings" (but without the spaces)
Even Better: "NumOfBookings" or "Num_Of_Bookings"
---------------------------------------------------------------------
AutoNumber
----------------
Purpose: Use an AutoNumber field to provide a unique value that serves no other purpose than to make each record unique. The most common use for an AutoNumber field is as a primary key
Every table I design has an Autonumber primary key field. The Primary Key field name has "
_PK" as a suffix. A Foreign Key field name has "
_FK" as a suffix.
Use a Meaningless Field for the Key Field
Microsoft Access Tables: Primary Key Tips and Techniques
You have a Text field as the PK field in table "Course Schedule" (BTW - you should avoid spaces in
ALL object names)