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

mysqladmin을 사용하여 기존 데이터베이스를 삭제하는 방법은 무엇입니까?


MySQL 데이터베이스를 생성하거나 삭제하려면 특별한 권한이 필요합니다. 다음은 mysqladmin을 사용하여 데이터베이스를 삭제하는 구문입니다. 바이너리 -

구문

[root@host]# mysqladmin -u root -p drop db_name
Enter password:******

여기, db_name 삭제하려는 데이터베이스의 이름입니다.

다음은 TUTORIALS −

라는 데이터베이스를 삭제하는 예입니다.
[root@host]# mysqladmin -u root -p drop TUTORIALS
Enter password:******

위의 명령문은 경고를 표시하고 이 데이터베이스를 정말로 삭제할 것인지 여부를 확인합니다.

Dropping the database is potentially a very bad thing to do.
Any data stored in the database will be destroyed.

Do you really want to drop the 'TUTORIALS' database [y/N] y
Database "TUTORIALS" dropped