Excel Add-In for Zoho Inventory

Build 23.0.8839

JOIN クエリ

CData Excel Add-In for Zoho Inventory は次の例のような標準SQL の結合をサポートします。

内部結合

内部結合は、結合条件に合う行のみを両テーブルから選択します。

SELECT c.FirstName, c.LastName, cp.Email, cp.Phone FROM ContactPersons cp INNER JOIN Contacts c ON cp.ContactId = c.Id

左結合

左結合は、FROM テーブルのすべての行とJOIN テーブルの条件に合う行のみを選択します。

 SELECT c.FirstName, o.LastName, cp.Email, cp.Phone FROM ContactPersons cp LEFT JOIN Contacts c ON cp.ContactId = c.Id

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839