I am creating a database table and want to make sure that data in one of the column is always bounded by data in a column of another table. for example:
Table_1 has Column_1
Column_1 can have values:
v1
v2
v3
v4
v2
v3
Now I am trying to create Table_2 with Column_3
and want to make sure that values in this column is always a subset of Table_1:Column_1
Is there a constraint I can apply to achieve this?