sql last updated

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

showing results for - "sql last updated"
Nada
26 Mar 2019
1select * from sys.objects
2order by modify_date desc
3
Alex
14 Feb 2016
1UPDATE TableName
2SET column1 = 1,
3column2 = 2
4OUTPUT DELETED.*
5WHERE <condition>;