Successfully added
Azure Service Bus Restrictions
by Roman
How to copy column data to another column using SQL
The following SQL statement shows how to copy the data from one column to another.
It will replace any existing values in the destination column, so be sure to know exactly what you’re doing and use the WHERE statement to minimize updates (e.g., WHERE destination_column IS NULL ).
UPDATE table
SET destination_column = source_column
WHERE destination_column IS NULL
Referenced in:
Leave a Comment
All fields are required. Your email address will not be published.
Comments(4)
Jamesbiofe
4/15/2024 9:11:41 AMJamesbiofe
3/17/2024 9:33:39 PMAzekke
3/17/2024 8:09:58 AMJamesbiofe
3/17/2024 7:16:49 AM