This is the legacy 4D documentation web site. Documentations are progressively being moved to developer.4d.com |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
4D v20 R7
QUERY WITH ARRAY
|
QUERY WITH ARRAY ( targetField ; array ) | ||||||||
Parameter | Type | Description | ||||||
targetField | Field |
![]() |
Field used to compare the values | |||||
array | Array |
![]() |
Array of the searched values | |||||
The QUERY WITH ARRAY command searches all the records for which the value of targetField is equal, at least, to one of the values of the elements in array. The records found will become the new current selection.
This command allows you to quickly and simply build a search on multiple values.
Notes:
The following example allows you to retrieve the records of both French and American clients:
ARRAY TEXT(searchArray;2)
SearchArray{1}:="FR"
SearchArray{2}:="US"
QUERY WITH ARRAY([Clients]Country;SearchArray)
Product: 4D
Theme: Queries
Number:
644
Modified: 4D v11 SQL
4D Language Reference ( 4D v20 R7)