MYSQL 명령어 소개

1. help 명령어로 아래와 현재 어떤 명령어 들이 있는지 확인 가능 오라클과 비교 해서 쓸만한것만
몇가지 소개

MariaDB [(none)]> help
General information about MariaDB can be found at
http://mariadb.org

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.                                                 ### 오라클의 ed 명령어 쿼리편집 ###
ego       (\G) Send command to mysql server, display result vertically.          ### 결과값 수직 출력 쿼리\G 옵션붙여사용##
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.                                                        ###오라클의 spool off ##
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.      ### 오라클의 spool ####
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.
nowarning (\w) Don't show warnings after every statement.



사업자 정보 표시
(주)블루원 | 김홍태 | 서울특별시 용산구 원효로 4가 135 금홍 2빌딩 | 사업자 등록번호 : 106-86-76684 | TEL : 02-3272-7200 | Mail : support_ora@blueone.co.kr | 통신판매신고번호 : 호 | 사이버몰의 이용약관 바로가기

'DB - MySQL' 카테고리의 다른 글

MySQL 보안 설정 - #2 audit 설정  (0) 2017.06.23
MySQL 보안 설정 - #1 계정권한  (0) 2017.05.29
maria DB 10 설치 (text)  (0) 2017.03.23
MySQL my.cnf 파일 설정  (0) 2017.03.23
MySQL Isolation LEVEL  (0) 2017.03.22

+ Recent posts