We can insert rows into a table with an INSERT.. SELECT
a statement like the one below,
INSERT INTO Table (column1, column2, column3, column4)
SELECT column1, column2, column3, column4
FROM table1
WHERE field = 'xyz'
Is it possible to update a table with SELECT
?