Changing a database table prefix is easy and here’s the simple step-by-step guide! For WordPress installations, it’s essential!
database_name
, old_prefix_
and new_prefix_
to the required values:SET @database = "database_name" ; SET @old_prefix = "old_prefix_" ; SET @new_prefix = "new_prefix_" ; SELECT concat( "RENAME TABLE " , TABLE_NAME, " TO " , replace(TABLE_NAME, @old_prefix, @new_prefix), ';' ) AS "SQL" FROM information_schema.TABLES WHERE TABLE_SCHEMA = @database; |
If your database doesn’t have a prefix at all, follow the steps above but use the below query that’s been slightly modified for this purpose:
SET @database = "database_name" ; SET @prefix = "prefix_" ; SELECT concat( "RENAME TABLE " , TABLE_NAME, " TO " , @prefix, TABLE_NAME, ';' ) AS "SQL" FROM information_schema.TABLES WHERE TABLE_SCHEMA = @database; |
See how easy that was? Isn’t it great when articles just get straight to the point? :)
제목 | 날짜 | ||
---|---|---|---|
227 | [윈도우] 마우스키 설정으로 컴퓨터 하기 | 9497 | 2013/07/27 |
226 | [하드웨어] CPU 순위 | 5868 | 2013/10/09 |
225 | [윈도우] 윈도우 7 64비트 서비스팩1 설치 실패 | 19501 | 2013/10/29 |
224 | [가상윈도우] [VirtualBox] VirtualBox 저장소(VDI) 용량 늘리기 | 7642 | 2013/10/29 |
223 | [기타] 이클립스 Failed to crate the java machine 해결 방법 질문입니다. [1] | 6447 | 2013/11/11 |
222 | [생활] CGV/롯데시네마/메가박스/프리머스 영화 싸게보는법! 재밌는 영화, 할인받아보자 | 7904 | 2013/12/16 |
221 | [엑셀] 수식 전체 입력하기 | 5787 | 2013/12/31 |
220 | [엑셀] IF 조건문 | 7516 | 2013/12/31 |
219 | [생활] 뱅크월렛 사용하기 [4] | 7523 | 2014/01/08 |
218 | [사이트관리] Apache 서버 .htaccess 활용(접근 제어 - 아이피 제어) | 5995 | 2014/02/09 |
217 | [하드웨어] 새로 산 하드에 공진음이 들린다 | 5184 | 2014/02/15 |
216 | [윈도우] 윈도우 복원 방법 정리 | 5418 | 2014/02/15 |