これらのテーブルRelationShips
とProducts
. これらのテーブル間に関係を作成したい。
RelationshipId RelationShipName RelationShipStatus
--------------------------------------------------------
1 Mother True
2 Father True
3 Sister True
ProductId SubCategoryId .... RelationShipId
---------------------------------------------------
ABC 100 1,2...
XYZ 101 2,3...
との関係を作るとRelationShipId
、商品のデータ型が int のため、このようにデータ 1,2 を挿入できません ( RelationShipId
)。製品 ( RelationShipId
) を as として提供varchar
すると、関係を構築できますか? ありがとう