Forum Discussion
mjjuk
7 years agoHelper I
how to limit SQL query loads from another 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"...
d_gosbell
7 years agoSuper User
If you can, the most efficient way to do this would be to load the Salesforce job numbers into a table in your other database. Then you could do a simple join between the two data sets. Optimizing joins across data stored in different physical sources is difficult. At some point you have to get the data into a common location so that you can do the comparison.
- mjjuk7 years agoHelper I
I was hoping some sort of WHERE clause could be used but I dont know how to reference the Salesforce table in SQL