Hey guys I’m using the ‘Execute Query’ activity to pull out a set of data from SQL, how do I then assign those values to variables?
Example Query:
“SELECT TOP 1 [FirstName], [LastName], [DOB], [CurrentStatus] FROM dbo.MyDBO”
So I want to assign the first name value, last name value, date of birth value, and current status that the query pulls out and place those into corresponding string and int variables.