4.5.1.4 mysql 서버측 도움말
mysql> help search_string
help
명령에 인수를 지정했을 경우, mysql은 서버 측의 도움말로 이동하여 MySQL 레퍼런스 매뉴얼의 내용에서 검색하는 문자열로 인수를 사용합니다. 이 명령이 제대로 작동하려면 mysql
데이터베이스의 도움말 테이블이 도움말 항목 정보로 초기화되어 있어야합니다 ( 섹션 5.1.10 "서버 측의 도움말" 을 참조하십시오).
검색 문자열과 일치하는 항목이없는 경우 검색이 실패합니다.
mysql> help me
Nothing found
Please try to run 'help contents'for a list of all accessible topics
도움말 카테고리 목록보기하려면 help contents를 사용하십시오.
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> help show binary logs
Name : 'SHOW BINARY LOGS'
Description :
Syntax :
SHOW BINARY LOGS
SHOW MASTER LOGS
Lists the binary log files on the server. This statement is used as
part of the procedure described in [purge-binary-logs, that shows how
to determine which logs can be purged.
mysql> SHOW BINARY LOGS;
+---------------+-----------+
| Log_name | File_size |
+---------------+-----------+
| binlog.000015 | 724935 |
| binlog.000016 | 733481 |
+---------------+-----------+
검색 문자열에 와일드 카드 문자 ' %
'및' _
'를 포함 할 수 있습니다. 이들은 LIKE
연산자에서 실행되는 패턴 매칭 연산과 같은 의미를가집니다. 예를 들어, HELP rep%
는 rep
로 시작하는 항목의 목록을 반환합니다.
mysql> HELP rep%
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 :
REPAIR TABLE
REPEAT FUNCTION
REPEAT LOOP
REPLACE
REPLACE FUNCTION