1 Matching Annotations
  1. Jan 2023
    1. WHERE HORSE.OWNER_ID = OWNER.OWNER_ID;

      Where clauses can be used to specify join matching logic. A where clause can be used to indicate that a column in table A is equal to a column in table B, and that equivilancy can be used to join table A rows to table B rows. THe format is as simple as

      TableA.MatchingColumn = TableB.MatchingColumn