I had tried that earlier, but I must have had the syntax wrong somewhere. But, as an note it would not allow me to SELECT *, i had to SELECT each column name in the select statement.
When you insert using a SELECT statement, if all columns from your select exists in your other table and they are in the same order of columns, then you should not have to list each column. In this case the select * would work. You must have all columns in the inserted table to use the Select * statement when inserting, otherwise, as you have found out, you have to list each column you want to insert. I hope this helps explain why in your case the select * probably did not work.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.