Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL 테이블의 이름을 어떻게 변경할 수 있습니까?

<시간/>

RENAME 명령은 MySQL 테이블의 이름을 변경하는 데 사용됩니다. 구문은 다음과 같습니다 -

RENAME table old_tablename to new_tablename2;

예시

아래 예에서는 'testing' 테이블의 이름을 'test'로 바꿉니다.

mysql> RENAME table testing to test;
Query OK, 0 rows affected (0.17 sec)

mysql> Select * from testing;
ERROR 1146 (42S02): Table 'query.testing' doesn't exist

mysql> Select * from test;
+-----+---------+
| id1 | Name    |
+-----+---------+
| 1   | Harshit |
| 2   | Lovkesh |
| 3   | MOHIT   |
| 4   | MOHIT   |
+-----+---------+

4 rows in set (0.02 sec)