Skip to main content

Documentation Index

Fetch the complete documentation index at: https://rajanand.org/llms.txt

Use this file to discover all available pages before exploring further.

Question:

Write an update statement to swap the column values without using a temporary tables. Before Update:
image.png
After Update:
image.png

Answer:

UPDATE dbo.STUDENT
SET first_name = last_name,
	last_name = first_name;

swap column values in sql - rajanand.org.png