0
我是Mysql的新手。我有一個最多有三個孩子的父表,我想只更新另一個具有條件的子表中的第一個孩子。更新來自另一個表的列表,並在共同列上有條件
表TblChild
id_child - parent_id - child_name - child_number
表TblParent
Id_paretn - parent_name - child_name_1 - child_id_1 - child_name_2 - child_id_2 - child_name_3 - child_id_3
查詢
UPDATE TblParent
SET TblParent.child_name_1 = TblChild.child_name,
TblParent.child_id_1 = TblChild.child_id
FROM TblChild, TblParent
WHERE TblParent.id_parent = TblChild.parent_id
AND TblChild.child_number = '1';
謝謝您的時間。
非常感謝你,它的工作原理。 – Raychu150
@EduardoSalomonRaydan好,如果我的答案是正確的,請將其標記爲已接受...看到這裏如何 http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work – scaisEdge