摘要:
在项目开发中遇到这么一个例子,首先产品表 tb_product id name 1 手机 2 电脑 3 笔记本 第二张表 tb_product_chain(产品链) int product_id parent_product_id 1 1 2 2 1 3 需要新建一个查询,即把表2中的product 阅读全文
摘要:
left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录 right join(右联接) 返回包括右表中的所有记录和左表中联结字段相等的记录 inner join(等值连接) 只返回两个表中联结字段相等的行 举例如下: 表A记录如下: aID aNum 1 a20050111 阅读全文