get last updated row sql server

Solutions on MaxInterview for get last updated row sql server by the best coders in the world

showing results for - "get last updated row sql server"
Ariana
29 Nov 2017
1UPDATE TableName
2SET column1 = 1,
3column2 = 2
4OUTPUT DELETED.*
5WHERE <condition>;