4D v14.3QUERY BY SQL |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
4D v14.3
QUERY BY SQL
QUERY BY SQL
The QUERY BY SQL command can be used to take advantage of the SQL kernel integrated into 4D. It can execute a simple SELECT query that can be written as follows: SELECT * aTable is the name of the table passed in the first parameter and sqlFormula is the query string passed in the second parameter. For example, the following statement: ([Employees];"name=’smith’") is equivalent to the following SQL query: SELECT*FROM Employees WHERE"name=’smith’" The QUERY BY SQL command is similar to the QUERY BY FORMULA command. It looks for records in the specified table. It changes the current selection of aTable for the current process and makes the first record of the new selection the current record. Note: The QUERY BY SQL command cannot be used in the context of an external SQL connection; it connects directly to the integrated SQL engine of 4D. QUERY BY SQL applies sqlFormula to each record in the table selection. sqlFormula is a Boolean expression that must return True or False. As you may know, in the SQL standard, a search condition can yield a True, False or NULL result. All the records (rows) where the search condition returns True are included in the new current selection. The sqlFormula expression may be simple, such as comparing a field (column) to a value; or it may be complex, such as performing a calculation. Like QUERY BY FORMULA, QUERY BY SQL is able to evaluate information in related tables (see example 4). sqlFormula must be a valid SQL statement that is compliant with the SQL-2 standard and with respect to the limitations of the current SQL implementation of 4D. For more information about SQL support in 4D, refer to the 4D SQL Reference manual. The sqlFormula parameter can use references to 4D expressions. The syntax to use is the same as for the integrated SQL commands or the code included between the Begin SQL/End SQL tags, i.e.: <<MyVar>> or :MyVar. Note: This command is compatible with the SET QUERY LIMIT and SET QUERY DESTINATION commands. Reminder: You cannot have references to local variables in compiled mode. For more information about SQL programming in 4D, refer to the section Overview of SQL Commands. QUERY BY SQL does not use relations between tables defined in the 4D Structure editor. If you want to make use of related data, you will have to add a JOIN to the query. For example, assuming we have the following structure with a Many-to-One relation from[Persons]City to [Cities]Name: [People] Using the QUERY BY FORMULA command, you can write: QUERY BY FORMULA([People];[Cities]Population>1000) Using QUERY BY SQL, you must write the following statement, regardless of whether the relation exists: QUERY BY SQL([People];"people.city=cities.name AND cities.population>1000") Note: QUERY BY SQL handles One-to-Many and Many-to-Many relations differently than QUERY BY FORMULA. This example shows the offices where sales exceed 100. The SQL query is: SELECT * When using the QUERY BY SQL command: C_STRING(30;$queryFormula) This example shows the orders that fall into the 3000 to 4000 range. The SQL query is: SELECT * When using the QUERY BY SQL command: C_STRING(40;$queryFormula) This example shows how to get the query result ordered by a specific criterion. The SQL query is: SELECT * When using the QUERY BY SQL command: C_STRING(40;$queryFormula) This example shows a query using related tables in 4D. In SQL you should use a JOIN to simulate this relation. Assuming we have the two following tables: [Invoices] with the following columns (fields): There is a Many-to-One relation from [Lines_Invoices]ID_Inv to [Invoices]ID_Inv. QUERY BY FORMULA([Lines_Invoices];([Lines_Invoices]Code="FX-200") & (Month of([Invoices]Date_Inv)=4)) The SQL query is: SELECT ID_Line When using the QUERY BY SQL command: C_STRING(40;$queryFormula) If the format of the search condition is correct, the system variable OK is set to 1. Otherwise, it is set to 0, the result of the command is an empty selection and an error is returned. This error can be intercepted by a method installed using the ON ERR CALL command. |
PROPERTIES
Product: 4D
HISTORY
Created: 4D v11 SQL SEE ALSO ARTICLE USAGE
4D Language Reference ( 4D v12.4) |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||