1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MySQL他のテーブルをコピーする方法

Last updated at Posted at 2020-05-24

概要

自分のメモ

テーブル構造コピー

<例>

CREATE TABLE
	`table_copy_target` like `table_original`;

■適宜下記書き換える
作成するテーブル名:table_copy_target
コピーするテーブル名:table_original

レコードコピー

<例>

INSERT INTO
	`table_copy_target`
	(id,name,name_kana,name2_kana...)
SELECT 
	id,name,name_kana,name2_kana...
FROM
	`table_original`;

■適宜下記書き換える
作成するテーブル名:table_copy_target
コピーするテーブル名:table_original

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?