Greetings!
I am trying to figure out if there is any way to use data taken from an alteryx Workflow and then run that specific data through SQL as the searchable criteria? Currently I have to run the workflow and output to an Excel sheet the list of claim ID's. I then manually copy and paste all of the claim id's directly into the SQL coding and run that separate. Once the SQL returns my desired data, I then have to copy all of that back into another Excel sheet.
I am hoping there is a way to avoid the manual steps involved. I thought about doing a seperate Data Input in the workflow that pulls all of the data and then use the Join tool to find the matching specific claims I need. The only problem with that is when I pull ALL the data it could return 100k + lines and/or timeout.
Here is my example:
I have a specific list of claim numbers (i.e. '123456789','234567890','345678901'...) and within the SQL coding I need to search for those exact claim numbers under the WHERE cl.claimid IN ( '123456789','234567890','345678901'... )
Does anyone know if it's possible to make my claim id's a wildcard or loop it somehow that Alteryx will pull a claim in the Database then move to the next one? Or any other suggestion...
Thanks so much!