我和这个旧帖子有同样的问题。
但就我而言,我没有表格,我只有两个列。我解释:
***mytable
id
name
conditional_1 (is a foreign key int)
conditional_2 (int)
包含的数据如下所示:
id name conditional_1 conditional_2
1 oscar 1 NULL
2 rene NULL 67
3 hello 2 NULL
4 stack 4 NULL
5 overf NULL 98
我做得对吗?或者我需要以下内容:
***mytable
id
name
cond_type
conditional_id (fk tbl_post)
***condtable1
conditional_1
***condtable1
conditional_2
这种情况下的最佳解决方案是什么?