I want to remove the value for a specific column in multiple SQL Server tables using an UPDATE
statement.
Using T-SQL, is it possible to store the tables in a list, then use a for each loop to execute the same SQL update statement to every single table in the list?
This is easy to do in a programming language like Python where you just specify
for table in tables:
Update statement