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? :)
제목 | 날짜 | ||
---|---|---|---|
467 | [브라우저] 왜임마 사용하기 #1 [2] [1] | 8559 | 2007/11/27 |
466 | [기본] 판도라동영상 OpenAPI 사용후기 [1] | 5962 | 2007/11/29 |
465 | [웹로그] 판도라동영상 OpenAPI 사용후기 [1] | 8203 | 2007/11/29 |
464 | [기본] Bonjour Service 다시 한 번 알아보자. | 5633 | 2007/11/29 |
463 | [웹로그] Bonjour Service 다시 한 번 알아보자. | 5499 | 2007/11/29 |
462 | [기본] 카스퍼스키 안티 바이러스 7, 3개월 무료 이용권 (처음 사용자용) | 6199 | 2007/12/01 |
461 | [웹로그] 카스퍼스키 안티 바이러스 7, 3개월 무료 이용권 (처음 사용자용) | 5923 | 2007/12/01 |
460 | [웹로그] flyExplorer v1.80.1735 정식 버전이 나왔습니다. | 8318 | 2007/12/02 |
459 | [기본] SnagIt, Camtasia 무료 배포 | 7820 | 2007/12/04 |
458 | [웹로그] SnagIt, Camtasia 무료 배포 | 0 | 2007/12/04 |
457 | [기본] 플래시 시계 [2] | 7827 | 2007/12/10 |
456 | [웹로그] 고해상도 앨범 커버를 가져오자. CoverGuru [1] | 5192 | 2007/12/22 |