MySQL 클라이언트-서버측 도움말에 대해 알아봅시다 -
mysql> help search_string
위의 "help" 명령에 인수가 제공되면 mysql은 이를 검색 문자열로 사용하여 MySQL 참조의 서버측 도움말에 액세스합니다. 매뉴얼 콘텐츠. 이 명령을 올바르게 작동하려면 도움말 항목 정보를 사용하여 mysql 데이터베이스의 도움말 테이블을 초기화해야 합니다.
검색 문자열에 일치하는 항목이 없으면 검색 작업이 실패합니다. 이를 이해하기 위해 예를 들어 보겠습니다.
mysql> help me
Nothing found Please try to run 'help contents' for a list of all accessible topics
help content 명령을 사용하여 도움말 카테고리 목록을 볼 수 있습니다. 이를 이해하기 위해 예를 들어 보겠습니다.
mysql> help contents
You asked for help about help category: "Contents" For more information, type 'help <item>', where <item> is one of the following categories: Account Management Administration Data Definition Data Manipulation Data Types Functions Functions and Modifiers for Use with GROUP BY Geographic Features Language Structure Plugins Storage Engines Stored Routines Table Maintenance Transactions Triggers
검색 문자열이 여러 항목과 일치하면 mysql은 일치하는 주제 목록을 표시합니다. 이를 이해하기 위해 예를 들어 보겠습니다. -
mysql > help logs
Many help items for your request exist. To make a more specific request, please type 'help <item>', where <item> is one of the following topics: SHOW SHOW BINARY LOGS SHOW ENGINE SHOW LOGS
위 내용은 MySQL 클라이언트 서버 도움말의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!