I have a single MSSQL table that I need to update a column with different values.
To update a single record, I would use a query like this:
UPDATE products
SET price = 2.08
WHERE product_id = 'B22991-12'
I need to do this about 7,000 times, so how would I do this? The new prices are currently in a spreadsheet.