TDV Adapter for Odoo

Build 22.0.8462

SELECT Statements

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 Odoo adapter:

SELECT {
  [ TOP <numeric_literal> ]
  { 
    * 
    | { 
        <expression> [ [ AS ] <column_reference> ] 
        | { <table_name> | <correlation_name> } .* 
      } [ , ... ] 
  }
  [ INTO csv:// [ filename= ] <file_path> [ ;delimiter=tab ] ]
  { 
    FROM <table_reference> [ [ AS ] <identifier> ] 
  }
  [ WHERE <search_condition> ]
  [ 
    ORDER BY 
    <column_reference> [ ASC | DESC ] [ NULLS FIRST | NULLS LAST ]
  ]
  [
    LIMIT <expression>
    [ 
      { OFFSET | , }
      <expression> 
    ]
  ] 
} | SCOPE_IDENTITY() 

  <expression> ::=
    | <column_reference>
    | @ <parameter> 
    | ?
    | COUNT( * | { [ DISTINCT ] <expression> } )
    | { AVG | MAX | MIN | SUM | COUNT } ( <expression> ) 
    | NULLIF ( <expression> , <expression> ) 
    | COALESCE ( <expression> , ... ) 
    | CASE <expression>
        WHEN { <expression> | <search_condition> } THEN { <expression> | NULL } [ ... ]
    [ ELSE { <expression> | NULL } ]
      END 
    | <literal>
    | <sql_function> 

  <search_condition> ::= 
    {
      <expression> { = | != | <> | > | < | >= | <= | LIKE | IN | AND | OR | NOT } [ <expression> ]
    } [ { AND | OR } ... ]

Examples

  1. Return all columns:
    SELECT * FROM res_users
  2. Rename a column:
    SELECT "email" AS MY_email FROM res_users
  3. Cast a column's data as a different data type:
    SELECT CAST(meeting_count AS VARCHAR) AS Str_meeting_count FROM res_users
  4. Search data:
    SELECT * FROM res_users WHERE company_name = 'Company Inc.'
  5. The Odoo APIs support the following operators in the WHERE clause: =, !=, <>, >, <, >=, <=, LIKE, IN, AND, OR, NOT.
    SELECT * FROM res_users WHERE company_name = 'Company Inc.';
  6. Sort a result set in ascending order:
    SELECT name, email FROM res_users  ORDER BY email ASC

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462