Pipedrive Connector SQL Select Statements

Pipedrive Connector SQL Select Statements

The API Profile supports SQL-92 Syntax. SELECT Statements includes a comprehensive list of the supported keywords and clauses, as well as syntax reference and examples.

Select Statements

Last Modified -

A SELECT statement can consist of the following basic clauses.

  • SELECT
  • INTO
  • FROM
  • JOIN
  • WHERE
  • GROUP BY
  • HAVING
  • UNION
  • ORDER BY
  • LIMIT

SELECT Syntax

The following syntax diagram outlines the syntax supported by the SQL engine of the provider:

SELECT {
  TOP <numeric_literal> | DISTINCT ]
  {
    *
    | {
        <expression> [ [ AS ] <column_reference> ]
        | { <table_name> | <correlation_name> } .*
      } [ , ... ]
  }
  INTO csv:// [ filename= ] <file_path> [ ;delimiter=tab ] ]
  {
    FROM <table_reference> [ [ AS ] <identifier> ]
  } [ , ... ]
  [ [ 
      INNER | { { LEFT RIGHT FULL } [ OUTER ] }
    JOIN <table_reference> [ ON <search_condition> ] [ [ AS ] <identifier> ]
  ] [ ... ]
  WHERE <search_condition> ]
  GROUP BY <column_reference> [ , ... ]
  HAVING <search_condition> ]
  UNION ALL ] <select_statement> ]
    • Related Articles

    • Microsoft SQL Server Connector

      Overview The "SQL Server" Connector pulls data from Microsoft SQL Server. Using rowversion fields Many integrations run frequently and only want to pick up records modified since the last time the integration ran. This can be accomplished with ...
    • Pipedrive Connector

      Connecting to Pipedrive Pipedrive uses token-based authentication to control access to its API. Using Token Authentication To authenticate to Pipedriver, you will need your Pipedrive API Key. You can find it by navigating to 'Settings' > 'Customize' ...
    • Act-On Connector

      Connecting to Act-On Please read the instructions to obtain your API Key and API call limitations here:  https://developer.act-on.com/provision/ Please supply the username, password and API Key for Act-On in the Connector window: Contacts To read ...
    • Zoho CRM Connector

      Additional Documentation This Connector is based on the Zoho CRM ADO.NET Provider by CData. For additional help, including Connection String parameters, please see: https://cdn.cdata.com/help/CZG/ado/ Authenticating to Zoho CRM The provider is ...
    • Marketo Connector

      Additional Documentation This Connector is based on the Marketo ADO.NET Provider by CData. For additional help, including Connection String parameters, please see: https://cdn.cdata.com/help/DKG/ado/ Connector Setup You may use this guide, ...