Copy an existing MySQL table to a new table
Записки веб разработчика
Категории
О записках
Записки веб разработчика это статьи и ссылки по веб разработке, дизайну, продвижению веб-рессурсов а также описание и ссылки на полезные скрипты
Администрирование
Вторник, 2 Январь. 2007
Copy an existing MySQL table to a new table
This is a great set of two commands that allow the creation and population of a new table with the structure and data of an existing table. This provides a quick means of making a point-in-time copy of a table and is a safe, easy way to make a quick copy of a table for testing an application in development on live data without risking a production environment.
To make a copy of the table recipes which is in a different database called production into a new table called recipes_new in the currently selected database, use these two commands:
CREATE TABLE recipes_new LIKE production.recipes;
INSERT recipes_new SELECT * FROM production.recipes;
The first command creates the new table recipes_new by duplicating the structure of the existing table. The second command copies the data from old to new.
The nomenclature production.recipes is a means of specifying the database and table in the same way that a file can be specified by its directory path. It is optional. If production was left off, MySQL would assume that the recipes table was also in the currently selected database.
http://www.tech-recipes.com/mysql_tips1487.html
Обратные ссылки
URI этой записи для создания обратных ссылок (trackback)
Нет обратных ссылок






