I have four rows in a table. I want to take the current values in those fields and create an UPDATE script that I can use to overwrite any future changes to these rows, to set them back to what they are today.
Here are the rows:
AssetId ClientId AssetNum ClientRef
----------- ----------- ---------- ----------------
62415 74 C56870 0269960
62416 74 C56871 3066163
62417 74 C56872 3066720
62418 74 C56873 6437729
AssetId is the PK.
There are actually a LOT more columns in this table, so I'm looking for a non-manual way to accomplish this.
Here are the rows:
AssetId ClientId AssetNum ClientRef
----------- ----------- ---------- ----------------
62415 74 C56870 0269960
62416 74 C56871 3066163
62417 74 C56872 3066720
62418 74 C56873 6437729
AssetId is the PK.
There are actually a LOT more columns in this table, so I'm looking for a non-manual way to accomplish this.