DBの世界は私のものではないので、おそらく質問が(データ型など)の項目の異なる種類のデータを保存DBの設計を想像しオプションの構造のSQL
簡単です
私は私が何をすべきか見当がつかないそれが、私は比較することができソフトウェア経由してアイテムのすべての種類は、それぞれのタイプ
の性質を持つテーブルになるため、これは、私はそれを
id | quantity | price ... Kind | ID_k_foreing |
を作ってるんですか種類、その後作る適切なテーブルこの擬似コード
switch(kind)
{
case chess_game:
the join is made with a table like this:
id_k| material | length | weigth ..
case car_toy:
the join is made with a table like this:
id_k| color | velocity | remote_control ...
case doll:
the join is made with a table like this:
id_k| name | height | clothes ..
...
}
トリッキーなソフトウェア機能を追加することなく、構造 で、この「データ型」の問題を解決するためにいくつかのstandarの方法がありますように
に参加しますか?
おかげ