我是mySQL的新手,对于一般的编码都是新手,但我正在尝试编写一个查询数据库,并在所写的字段中为客户提取所有记录(即客户ID号,名字和姓氏) ,亲子帐户关系)
再次记住,我昨天只看了一个关于如何做这些查询的教程...... 这就是我所拥有的。
SELECT billPlan.custID, billPlan.cFname, billPlan.cLname,
customer.customer_cmp_name,customer_parent_child.ParentID,
customer_parent_child.ChildID
FROM billPlan, customer, customer_parent_child
WHERE billPlan.cFname LIKE 'Rebecca'
AND billPlan.custID=customer.custID AND
(customer_parent_child.ParentID = billPlan.custID
OR customer_parent_child.ChildID = billPlan.custID)
再次尝试并记住我确实是一个编程NOOB,可能需要一个noob可以理解的解释。谢谢!