我有两个具有一对多关系的表 table1(一个),table2(很多)。
table1 has (t1_id) as KEY
table2 has (t2_id) as KEY and t2_t1_id as as refference to table1
现在table1
我需要一个rand_t2_id
包含id
from的列 ( ) table2
,我真的不在乎哪一个
这是我试过的查询
INSERT INTO table1 (rand_t2_id)
SELECT t2_id
FROM table2
WHERE table1.t1_id = table2.t2_t1_id;
如果需要,还需要在某处建立限制。我只需要 table2 中的一个 id
运气不好,有人知道解决方法吗?