Forum Discussion
mjjuk
7 years agoHelper I
Limiting an SQL Query from values in a salesforce Table
Hi All, I am trying to load a table from an ODBC database but only bring in the values from a salesforce table I have loaded in ..... I have a column in the Salesforce table called "job Number"...
v-frfei-msft
7 years agoCommunity Support
mjjuk
7 years agoHelper I
Hi v-frfei_msft,
I usually write in the SQL in this advanced section but how would i reference the Salesforce table?
Are you thinking a EXISTS SQL?
SELECT column_name(s)
FROM table_name
WHERE EXISTS
(SELECT column_name FROM table_name WHERE condition);
Is it possible to reference a Salesforce Object in this way?