0
我在我的數據庫中需要一個StringCollection字段,但我不知道MySQL是否有類似的東西,是嗎?MySQL中是否有StringCollections?
我在我的數據庫中需要一個StringCollection字段,但我不知道MySQL是否有類似的東西,是嗎?MySQL中是否有StringCollections?
還有mysql SET類型。
字符串集合通常實現爲與外鍵的一對多關係。例如,添加一個字符串集合在表1行,你會設置表2所示:
Table1: id, name, ...
Table2: Table1Id foreign key references Table1(id), strValue, ...
實例值,其中包含Table1
足球隊,隨着玩家一個字符串集合:
Table1: 1, "Manchester United"
2, "Liverpool"
Table2: 1, "Bobby Charlton"
1, "Wayne Rooney"
2, "Steven Gerrard"
2, "Michael Owen"