반응형

A 데이터베이스에 존재하는 테이블들을 B 데이터베이스로 일괄 이동해야 할 때가 있다.
이 경우 information_schema의 tables 테이블을 참고하여 커멘드를 일괄 생성할 수 있다.

# ${variables} < 용도에 맞게 변경할 부분

# template
SELECT
    concat(
        'rename table `',
        table_schema,
        ' `.` ',
        table_name,
        '` to ${new_database_name}.',
        table_name,
        ';'
    )
FROM
    information_schema.tables
WHERE
    table_schema = '${old_database_name}' \G

# example
SELECT
    concat(
        'rename table `',
        table_schema,
        ' `.` ',
        table_name,
        '` to new_ktw.',
        table_name,
        ';'
    )
FROM
    information_schema.tables
WHERE
    table_schema = 'ktw' \G
반응형