• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    mysql的登陆和退出命令格式

    mysql登陆的命令格式为:

    mysql -h [hostip] -u [username] -p [password] [database] 

    1.普通登陆mysql数据库
    命令格式:mysql -u 用户名 -p 密码,例如: mysql -u root -p root
    如果在-p后没有提供密码,则会在执行命令后要求用户输入密码

     

    2.制定端口号登陆,mysql的默认端口号是3306,
    命令格式:mysql -u 用户名 -p 密码 -P 端口号
    即可,注意指定端口的字母P为大写,而标识密码的p为小写。

     

    3.指定IP地址和端口号登录MySQL数据库
    命令格式为:mysql -h ip -u 用户 -p -P 端口号
    例如:mysql -h 127.0.0.1 -u root -p -P 3306


     

    4.制定数据库登陆
    mysql -h ip地址 -u 用户名 -p 密码 数据库名
    例如:mysql -h 127.0.0.1 -u root -p test

    查看当前登陆用户和数据库

    select user();
      select database();

    退出登陆命令
    登陆进入mysql进入之后,可能到下面的提示信息,可以help看看输出结果

    mysql> help
    
    For information about MySQL products and services, visit:
      http://www.mysql.com/
    For developer information, including the MySQL Reference Manual, visit:
      http://dev.mysql.com/
    To buy MySQL Enterprise support, training, or other products, visit:
      https://shop.mysql.com/
    
    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.
    nowarning (\w) Don't show warnings after every statement.
    resetconnection(\x) Clean session context.
    
    For server side help, type 'help contents'

    通过输出信息,我们知道如下三条退出mysql的命令
    1. exit
    2. quit
    3. \q

    到此这篇关于mysql的登陆和退出命令格式的文章就介绍到这了,更多相关mysql登陆和退出内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • MySQL命令无法输入中文问题的解决方式
    • MySQL命令行操作时的编码问题详解
    • MySQL source命令的使用简介
    • mysql常用sql与命令之从入门到删库跑路
    • mysql利用mysqlbinlog命令恢复误删除数据的实现
    • MySQL存储过程的查询命令介绍
    • MySQL数据库自动补全命令的三种方法
    • mysql密码中有特殊字符&在命令行下登录的操作
    • Mysql桌面工具之SQLyog资源及激活使用方法告别黑白命令行
    • MySQL如何使用授权命令grant
    • MySQL 基础常用命令总结
    上一篇:MySql设置指定用户数据库查看查询权限
    下一篇:MySQL 8.0 之索引跳跃扫描(Index Skip Scan)
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    mysql的登陆和退出命令格式 mysql,的,登陆,和,退出,命令,