zoukankan      html  css  js  c++  java
  • MySQL快捷命令

    下表列出了各个提示符并简述它们所表示的mysql的状态:

    提示符 含义
    mysql> 准备好接受新命令。
    -> 等待多行命令的下一行。
    ‘> 等待下一行,等待以单引号(“’”)开始的字符串的结束。
    “> 等待下一行,等待以双引号(“””)开始的字符串的结束。
    `> 等待下一行,等待以反斜点(‘`’)开始的识别符的结束。
    /*> 等待下一行,等待以/*开始的注释的结束。

    mysql help列表

    ?         (?) Synonym for `help'.
    clear     (c) Clear the current input statement.
    connect   (
    ) Reconnect to the server. Optional arguments are db and host.
    delimiter (d) Set statement delimiter.
    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.
    notee     (	) Don't write into outfile.
    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.
    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.
    nowarning (w) Don't show warnings after every statement.

    mysql 命令

     

    启动命令
    sudo service  mysql start 
    关闭命令
    sudo service mysql stop 
    重启命令
    sudo service mysql restart 
    查看状态
    sudo service mysql status
    ps -aux | grep mysql
    mysql 的登录
    mysql -uroot -p
    mysql -uroot -pmysql (p后面是密码)
    退出
    exit     /   quit   /   ctrl +d
    查看版本
    select version();
    显示当前时间
    select now();
    

      



  • 相关阅读:
    JAVA 设计模式 组合模式
    JAVA 设计模式 模板方法模式
    SpringBoot 数据篇之使用JDBC
    [Spring]01_环境配置
    [spring]03_装配Bean
    [Spring]04_最小化Spring XML配置
    [Quartz笔记]玩转定时调度
    [Spring]支持注解的Spring调度器
    asp.net core 系列 13 日志
    asp.net core 系列 12 选项 TOptions
  • 原文地址:https://www.cnblogs.com/heboxiang/p/11208364.html
Copyright © 2011-2022 走看看