How do we represent a subtype?

Using the customer model, I'm trying to do something like:

Customer
-
CustomerID int PK
Name varchar(100)
Address1 string
Address2 string
City string
Business_Customer
-
Business_Customer_ID PK FK > Customer.ID
Virtual_Customer
-
Virtual_Customer_ID PK FK > Customer.ID

Galen-Boyer

posted on 07 Mar 25

Enjoy great content like this and a lot more !

Signup for a free account to write a post / comment / upvote posts. Its simple and takes less than 5 seconds




npack01-Apr-25

Can you pls try the below, seems to work for me

Customer

-

CustomerID int PK

Name varchar(100)

Address1 string

Address2 string

City string

Business_Customer

-

Business_Customer_ID int PK FK > Customer.CustomerID

Virtual_Customer

-

Virtual_Customer_ID int PK FK > Customer.CustomerID