Parameter | Data Type | Description |
|---|---|---|
1 | Any | The name of a column. |
2 | Any | The name of the table in the external source. |
3 | Boolean | The boolean expression over columns in that table. |
Expression | Result |
|---|---|
SELECT ClientName FROM Clients where Clients is a table/view/SharePoint list set up as an External DataSource in Administrator, containing the column ClientName | all client names |
SELECT ClientName FROM Clients WHERE 'Head Office Country' Is "USA" where Clients is a table/view/SharePointlist set up as an External Data Source inAdministrator, containing the column ClientName | names of clients located in USA |
Parameter | Data Type | Description |
|---|---|---|
1 | Any* | The names of a list of columns. |
2 | Any | The name of the table in the external source. |
3 | Boolean | The boolean expression over columns in that table. |
Expression | Result |
|---|---|
SELECT ClientID, ClientName FROM Clients where Clients is a table/view/SharePoint list set up as an External Data Source in Administrator, containing the columns ClientID and ClientName | all client ids and names |
SELECT ClientID, ClientName FROM Clients WHERE 'Head Office Country' = "USA" where Clients is a table/view/SharePoint list set up as an External Data Source in Administrator, containing the columns ClientID and ClientName | ids and names of clients located in USA |