So this is the query I am trying, definately doesnt work.
The subquery returns 3 rows, which I want copied to the new table.
INSERT INTO retired
VALUES (SELECT * from questions where status = 'R');
I was sure looking at it I was doing it wrong, but here is specifically the question:
Do I need to list all the columns separately, or is there a way to tell it just to move the whole row? The tables attributes and columns are identical.