Working with 13-Review and Reporting > 13-3 Report Writer > Calculated Fields > About SQL syntax
Learn more

Between

Inner join

About operators

About SQL syntax

The SQL Queries operator enables you to return a value that meets specific conditions. Within the Select From Where expression, you enter the fields, functions, and constants.

When building an SQL expression, you can use any mathematical or relational operations, as well as language operators. The placement of operators is critical to proper calculation, and some operators are placed before rather than after the fields. The following list describes the language operators you can use in an SQL expression:

Operator

Description

Select

Locates data for the selected field.

Select Sum

Locates and totals all figures for the selected field. You can use Select Sum in place of the Select portion of the expression.

From

Indicates the source database. Usually follows the Select portion of the expression.

Where

Defines the criteria that data must meet for use in the query. Usually follows the From portion of the expression.

Between

Defines a range of data. The Between operator works similar to >= and <=.(See Learn more links)

Inner Join

Creates a relationship between two tables.(See Learn more links)

Example: Syntax

Syntax: Select table1 From table2 Where value

Important! The syntax for an SQL expression can vary greatly depending on the complexity. The syntax above only outlines a simple SQL expression.

Example:

If you store information in the user-defined fields in 7-1 Company Information, you can use an SQL query to extract the information.

Syntax: Select USRDF1 From CMPANY

Queries follow these specific guidelines: