3.2 KiB
3.2 KiB
title | author | date | wordtwit_post_info | categories | ||
---|---|---|---|---|---|---|
MySQLでテーブルのコピーを作成する | kazu634 | 2009-08-01 |
|
|
「MySQLでテーブルのコピーを簡単に作る方法」を参考させていただきました(おいぬまさんとは昨年のEmacs勉強会でご一緒したような記憶が)。
MySQLでテーブルのコピーを作成する方法は下記の通りになります:
kazu634@kazu634-desktop% mysql -uusername -ppassword ~/public_html/cgi-bin [3578] Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 133 Server version: 5.0.75-0ubuntu10.2 (Ubuntu) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> use sample; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> CREATE TABLE renoir_20090801 LIKE renoir; Query OK, rows affected (.15 sec) mysql> INSERT INTO renoir_20090801 SELECT * FROM renoir; Query OK, 87 rows affected (.07 sec) Records: 87 Duplicates: Warnings: mysql> exit Bye