> I want to copy data from one table to another. However I need to do this
> carefully because I haven't got much of space left. I was thinking of
maybe
> selecting data from every 100000 rows of the old table, inserting it into
> the new table, then deleting those rows from the old table.
>
> Could someone help me out with the SQL for this please? Or tell me if
> there's a better way of doing this?


CREATE TABLE new_able
SELECT *
FROM old_table;

Ronan




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to