Search code examples
ssisstaging

SQL Query on transformed table in SSIS


I have joined 5 tables and done transformation on these tables. Now I got a single table at the end. Now I want to perform sql query on this single table to filter records. But I don't know how to perform simple sql query on this table. I have attached a snap shot which shows the resulting table. How I get this resulting data set as the source? I want to populate my destination after filter out this data. I am using SSIS 2008.

Click here to see the Table on which I want to perform a simple sql query


Solution

  • SELECT * FROM `first_table`
    where `some_column` = 
    (
    SELECT `*`
    FROM second_table
    WHERE
    `some_column2`='something'
    LIMIT 1
    )
    

    Try this code This will help. You can even use this to connect all those four tables with each other.