如何在SQL中使用加入表格JOIN

本篇将介绍如何在SQL server中使用加入表格JOIN。 JOIN 是在SQL SERVER中用于加入其它表格中的数据。 本篇将介绍多种JOIN的方法分别用于不同情况。 首先要确定登陆到指定数据库表格,然后单击New Query。 输入以下 1. 显示Products.Product_Information的name,Products.Production的OrderQty和DueDate。 SELECT pi.Name, pp.OrderQty, pp.DueDateFROM Products.Product_Information piINTER JOIN Products.Production ppON pi.ProductID = pp.ProductIDORDER BY pp.DueDate…