Every month we need to create a statement based off of a CSV file. Here is an example:
SELECT Name, OrderID, Product, Price
From Orders
Where OrderID = (here is where I am stuck);
So basically every month we get a new set of roughly 50 to 60 OrderID values in CSV format. How can I create a statement that outputs Name, OrderID, Product, Price for these OrderID’s?
I think you are looking for something like this.