1. Adding a prefix to all tables in a MySQL database
SELECT Concat('ALTER TABLE ', TABLE_NAME, ' RENAME TO my_prefix_', TABLE_NAME, ';') FROM information_schema.tables WHERE table_schema = 'my_database'
출처 : https://steindom.com/articles/adding-prefix-all-tables-mysql-database
2.
SELECT
GROUP_CONCAT('RENAME TABLE `', TABLE_SCHEMA, '`.`', TABLE_NAME, '` TO `', TABLE_SCHEMA, '`.`prefix_', TABLE_NAME, '`;' SEPARATOR ' ')
FROM
`TABLES` WHERE `TABLE_SCHEMA` = "test";
참조
http://stackoverflow.com/questions/16339636/how-to-change-all-table-prefix-in-a-single-query
http://stackoverflow.com/questions/2466101/how-i-can-change-prefixes-in-all-tables-in-my-mysql-db
3. How to change a MySQL database’s table prefix
https://richjenks.com/change-mysql-database-table-prefix/
https://sir.kr/qa/145401
제목 | 날짜 | ||
---|---|---|---|
107 | [Nginx] Nginx 모니터링 툴 | 400 | 2017/10/23 |
106 | [MySQL] MySQL/MariaDB 비밀번호 변경 | 611 | 2017/10/26 |
105 | [Nginx] : /bin/bash^M: bad interpreter: No such file or directory | 63 | 2017/10/28 |
104 | [리눅스서버] 계정등록(adduser) 기능 및 옵션, 계정 변경(usermod) | 325 | 2017/10/28 |
103 | [Nginx] SSL Lets Encrypt certbot | 490 | 2017/11/01 |
102 | [Nginx] certbot 수동 발급 | 0 | 2017/11/02 |
101 | [Nginx] 리노드 서버 다운그레이드 | 0 | 2017/11/08 |
100 | [웹 제작] 모바일에서 쇼핑몰이나 홈페이지 들어가면 자동적으로 바탕화면에 즐찾 생성 되는 방법 | 0 | 2017/12/02 |
99 | [사이트관리] SEO 작업 | 328 | 2017/12/04 |
98 | [GitHub] develop 을 git pull 하기 | 0 | 2017/12/05 |
97 | [텔넷] 터미널에서 ssh 접속하기 | 275 | 2017/12/12 |
96 | HTTrack Website Copier 한글 언어팩 | 603 | 2018/01/03 |