CData Python Connector for Bullhorn CRM

Build 23.0.8839

JOIN クエリ

CData Python Connector for Bullhorn CRM は次の例のような標準SQL の結合をサポートします。

内部結合

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

SELECT c.CandidateName, o.Certification, o.GraduationDate, o.Comments FROM Candidate c INNER JOIN CandidateEducation o ON c.Id = o.CandidateId

左結合

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

 SELECT c.Subject, o.AttendeeId FROM Appointment c LEFT JOIN AppointmentAttendee o ON c.Id = o.AppointmentId

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