Not "order", because that is a SQL keyword.
- The one:many relationship between customers and orders
is represented by the ord.customer_id
column.
- not null because an order without a
customer doesn't make sense.
- references customer: This is
a foreign key. It expresses the referential
integrity constraint.