How do i select values from enrichment to insert them into table using SQL code activity
Hi ,
I am using SQL code activity to do insert into custom table . From the the below code i want the data from enrichment before sql code activity. Can some one give me sample query to fetch values from enrichment and insert into table.
INSERT INTO Customtable(column1, column2, column3, ...)
SELECT column1(From enrichment), column2, column3(From enrichment), ...
FROM enrichment.
