zoukankan      html  css  js  c++  java
  • mysqlsh : mysql shell tutorial

    MySQL Shell 是一个高级的命令行客户端以及代码编辑器for Mysql.

    除了SQL,MySQL Shell也提供脚本能力 for JS and Python.

    When MySQL shell is conected to the MySQL server throught the X protocol, the X devAPI can be used to work with both relational and documnet data,

    官方教程8.0版本第二十章有介绍.

    MySQL包含AdminAPI,允许你同InnoDB cluster协作.见第21章.

    简单的option介绍.

    https://dev.mysql.com/doc/refman/8.0/en/mysqlsh.html

    ===================TUTORIAL++++++++++++++++++++++++++

    Features:

    Gobal Session: Interactive with a MySQL server is done through a Session object.

    For SQL mode, the concept of Global session is supported by the mysql shell.

    A global session is created when the connection infromation is passed to mysql shell using command options,

    or by using the connect command.here is a example below:

    connect uri;

     此例中输入错误,应该写成 connect root@localhost:3306/test后面不能加分号.

    1. MySQL Shell Connections

    1.1 can connect to mysql server using both the x protocol and the classic mysql protocol.

    The address fo the mysql server which you want to connect to can be specified using individual parameters, such as user, houstname and port, or using a Uniform Resource Identifier(URI) type string.

    1.2. connectiing to the mysql server.

    1.2.1 msql shell没启动时:使用参数启动

    1.2.2 when mysql shell is running

    using the connect command.

     1.2.3

     之后的在:

    https://dev.mysql.com/doc/refman/8.0/en/mysql-shell-connection-options.html

    查询.

    宛如智障,暗藏锋芒
  • 相关阅读:
    容斥原理
    m元集A到n元集B的满射的个数
    二项式反演公式
    多项式定理
    组合数的基本性质
    Luogu P2408 不同子串个数
    Luogu P5410【模板】扩展 KMP
    Luogu P2336 [SCOI2012]喵星球上的点名
    Luogu P2852 [USACO06DEC]牛奶模式Milk Patterns
    Luogu P4248 [AHOI2013]差异
  • 原文地址:https://www.cnblogs.com/zienzir/p/9093826.html
Copyright © 2011-2022 走看看