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

MySQL 클라이언트 명령


일부 MySQL 클라이언트 명령에 대해 알아보자 -

MySQL은 사용자가 실행하는 모든 SQL 문을 서버로 보냅니다. mysql이 자체적으로 해석하는 명령 세트도 있습니다.

명령 목록 가져오기

이러한 명령 목록은 프롬프트에 아래 언급된 명령을 입력하여 찾을 수 있습니다 -

mysql> help

출력

List of all MySQL commands:
Note that all text commands must be first on line and end with ';'
? (\?) Synonym for `help'.
clear     (\c) Clear the current input statement.
connect   (\r) Reconnect to the server. Optional arguments are db and host.
delimiter (\d) Set statement delimiter.
edit      (\e) Edit command with $EDITOR.
ego       (\G) Send command to mysql server, display result vertically.
exit      (\q) Exit mysql. Same as quit.
go        (\g) Send command to mysql server.
help      (\h) Display this help.
nopager   (\n) Disable pager, print to stdout.
notee     (\t) Don't write into outfile.
pager     (\P) Set PAGER [to_pager]. Print the query results via PAGER.
print     (\p) Print current command.
prompt    (\R) Change your mysql prompt.
quit      (\q) Quit mysql.
rehash    (\#) Rebuild completion hash.
source    (\.) Execute an SQL script file. Takes a file name as an argument.
status    (\s) Get status information from the server.
system    (\!) Execute a system shell command.
tee       (\T) Set outfile [to_outfile]. Append everything into given    outfile.
use       (\u) Use another database. Takes database name as argument.
charset   (\C) Switch to another charset. Might be needed for processing  binlog with multi-byte charsets.
warnings  (\W) Show warnings after every statement.

mysql이 '--binary-mode' 옵션으로 호출되면 입력이 mysql에 파이프되거나 소스 명령을 사용하여 로드되는 경우 비대화식 모드에서 charset 및 delimiter를 제외한 모든 mysql 명령이 비활성화됩니다.

각 명령에는 긴 형식과 짧은 형식이 있습니다.

긴 형식 명령

긴 형식은 대소문자를 구분하지 않고 짧은 형식은 대소문자를 구분합니다. 긴 형식 뒤에 선택적 세미콜론 종결자가 올 수 있지만 짧은 형식 뒤에는 아무 것도 오면 안 됩니다.

약식 명령

여러 줄의 /* ... */ 주석 내에서 짧은 형식의 명령을 사용하는 것은 지원되지 않습니다. 짧은 형식 명령은 한 줄 /* 내에서 작동합니다! ... */ 버전 주석, /*+ ... */ 옵티마이저 힌트 주석도 마찬가지입니다. 개체 정의에 저장됩니다.