sql update alias

Solutions on MaxInterview for sql update alias by the best coders in the world

showing results for - "sql update alias"
Iris
27 Jun 2018
1UPDATE t
2SET t.COLUMN = 'UPDATE'
3FROM DATABASE_TABLE t
4WHERE t.ID = 1;