okay, just take that concept and run with it --
the table
newusers should have the exact same data layout as the
users table, and you fill it up with your CREATE/SELECT statement there
your second step would then be to insert the contents of
newusers back into
users with an INSERT/SELECT statement, which, since the layouts are identical, will not require mentioning columns --
Code:
insert
into users
select *
from newusers
one of the very rare instances when it is acceptable to use the dreaded, evil "select star"