Hi All!
I have a wierd one for you…
i have an existing datatable that i need to “copy” 1 field to another field within the same table… what would the easiest way be to accomplish this? … i would like to just use an update query if at all possible.
Lets say my table looks like this …
id name asset model
1 NULL h1000 VX10
i want to take the data from the ‘asset’ field and copy it to the name field
result would be
id name asset model
1 h1000 h1000 VX10