각종 팁&정보를 나누는 곳입니다.
누군가에게 도움이 된다 싶으시면 언제라도 포스팅 :)
글 등록하기 | 내글 관리하기 | 연재글 | 보관함
첨부파일 https://imweb.eond.com/webtip/430086

Changing a database table prefix is easy and here’s the simple step-by-step guide! For WordPress installations, it’s essential!


What you’ll need

  1. Use random.org to generate a strong table prefix
  2. Access to the database via cPanel or PHPMyAdmin
  3. A text editor
  4. 2 minutes

How to change a prefix

  1. In your text editor, change database_nameold_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;
  2. Run the query in cPanel or PHPMyAdmin on your WordPress database
  3. The output will be a series of SQL queries that will rename the tables for you
  4. Run the output
  5. Done!

How to add a prefix

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;

Conclusion

See how easy that was? Isn’t it great when articles just get straight to the point? :)

코멘트 0
접기/펴기 | 댓글 새로고침
 
 
Total 683 articles in 7 / 57 pages
번호 제목 제목 조회 수 날짜날짜
611 [엑셀] [엑셀]티켓 출력하기(일련번호 출력)-1 파일 811 2019/02/03
610 [엑셀] 무료 Excel 용 Kutools(Kutools for Excel) 대체 프로그램 8개 998 2019/02/03
609 [엑셀] 무료 Excel 용 Kutools(Kutools for Excel) 대체 프로그램 8개 680 2019/02/03
608 [엑셀] 인쇄시 셀값 자동 증가하면서 인쇄하는 방법 파일 2687 2019/02/03
607 [엑셀] 엑셀함수에서 1씩증가하여 인쇄하는법 파일 3544 2019/02/03
606 [Nginx] NGINX PHP 파일 업로드 용량 파일 229 2018/12/16
605 [Apm] 오토셋에서 mysql 명령어 입력하기 파일 212 2018/12/10
604 [Apm] autoset 500 Internal Server Error 357 2018/12/04
603 [MySQL] phpmyadmin, adminer 접속 불가능.. 93 2018/12/03
602 [Nginx] 특정 디렉토리 php 실행하기 14746 2018/08/26
601 [GitHub] 카페24에서 github 다운로드 받는 방법 파일 773 2018/08/02
600 [리눅스서버] [쉘스크립트] 새로운 데이터베이스 테이블 생성 및 유저 연결 쉘스크립트 568 2018/07/29

해시태그 디렉터리

오늘의 핫게시물