Documentation Home
MySQL 8.4 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 39.8Mb
PDF (A4) - 39.9Mb
Man Pages (TGZ) - 257.9Kb
Man Pages (Zip) - 364.9Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 8.4 Reference Manual  /  ...  /  ndb_select_count — Print Row Counts for NDB Tables

25.5.26 NDB Select Count — 打印 NDB 表的行数

NDB Select Count 打印一个或多个 NDB 表的行数。对于单个表,结果等同于使用 MySQL 语句 SELECT COUNT(*) FROM tbl_name 得到的结果。

ndb_select_count [-c connection_string] -ddb_name tbl_name[, tbl_name2[, ...]]

可以与 NDB Select Count 一起使用的选项显示在下表中。附加描述随后出现。

  • --character-sets-dir

    Command-Line Format --character-sets-dir=path

    包含字符集的目录。

  • --connect-retries

    Command-Line Format --connect-retries=#
    Type 整数
    Default Value 12
    Minimum Value 0
    Maximum Value 12

    重连次数,直到放弃。

  • --connect-retry-delay

    Command-Line Format --connect-retry-delay=#
    Type Integer
    Default Value 5
    Minimum Value 0
    Maximum Value 5

    等待与管理服务器联系的秒数。

  • --connect-string

    Command-Line Format --connect-string=connection_string
    Type String
    Default Value [none]

    --ndb-connectstring相同。

  • --core-file

    Command-Line Format --core-file

    在出现错误时写入核心文件;用于调试。

  • --defaults-file

    Command-Line Format --defaults-file=path
    Type String
    Default Value [none]

    只从给定文件中读取默认选项。

  • --defaults-extra-file

    Command-Line Format --defaults-extra-file=path
    Type String
    Default Value [none]

    读取给定文件后,先读取全局文件。

  • --defaults-group-suffix

    Command-Line Format --defaults-group-suffix=string
    Type String
    Default Value [none]

    同时读取组名后缀连接的组。

  • --login-path

    Command-Line Format --login-path=path
    Type String
    Default Value [none]

    从登录文件中读取给定路径。

  • --no-login-paths

    Command-Line Format --no-login-paths

    跳过从登录路径文件中读取选项。

  • --help

    Command-Line Format --help

    显示帮助文本并退出。

  • --ndb-connectstring

    Command-Line Format --ndb-connectstring=connection_string
    Type String
    Default Value [none]

    设置连接字符串,用于连接到ndb_mgmd。语法:[nodeid=id;][host=]hostname[:port]。覆盖NDB_CONNECTSTRINGmy.cnf中的条目。

  • --ndb-mgm-tls

    Command-Line Format --ndb-mgm-tls=level
    Type 枚举值
    Default Value relaxed
    Valid Values

    relaxed

    strict

    设置连接到管理服务器所需的TLS支持级别;可选值为relaxedstrictrelaxed(默认)意味着尝试建立TLS连接,但成功不必要求;strict意味着必须使用TLS才能连接。

  • --ndb-mgmd-host

    Command-Line Format --ndb-mgmd-host=connection_string
    Type String
    Default Value [none]

    --ndb-connectstring相同。

  • --ndb-nodeid

    Command-Line Format --ndb-nodeid=#
    Type Integer
    Default Value [none]

    设置节点ID,以覆盖--ndb-connectstring中设置的任何ID。

  • --ndb-optimized-node-selection

    Command-Line Format --ndb-optimized-node-selection

    启用节点选择优化的交易。默认情况下启用;使用--skip-ndb-optimized-node-selection禁用。

  • --ndb-tls-search-path

    Command-Line Format --ndb-tls-search-path=list
    Type 路径名
    Default Value (Unix) $HOME/ndb-tls
    Default Value (Windows) $HOMEDIR/ndb-tls

    指定要搜索CA文件的目录列表。Unix平台上,目录名称由冒号(:)分隔;Windows系统中使用分号字符(;)作为分隔符。一个目录引用可以是相对或绝对路径,它可能包含一个或多个环境变量,每个变量由前缀的美元符号($)表示,并在使用时进行扩展。

    搜索从左侧命名目录开始,自右向左依次进行,直到找到文件为止。一个空字符串表示空搜索路径,将导致所有搜索失败。一串由单个点(.)组成的字符串表示搜索路径仅限于当前工作目录。

    如果未提供搜索路径,则使用编译时默认值。这取决于所使用的平台:在Windows上,这是 \ndb-tls;在其他平台(包括Linux)上,它是 $HOME/ndb-tls。可以通过编译NDB集群时使用-DWITH_NDB_TLS_SEARCH_PATH来重写此值。

  • --no-defaults

    Command-Line Format --no-defaults

    不从任何选项文件(除了登录文件)中读取默认选项。

  • --print-defaults

    Command-Line Format --print-defaults

    打印程序参数列表并退出。

  • --usage

    Command-Line Format --usage

    显示帮助文本并退出;与 --help 相同。

  • --version

    Command-Line Format --version

    显示版本信息并退出。

您可以通过在调用此命令时列出表名(用空格分隔)来从多个表中获取行计数,如下所示的 样例输出 中显示。

$> ./ndb_select_count -c localhost -d ctest1 fish dogs
6 records in table fish
4 records in table dogs