Home > Database > Mysql Tutorial > Using options on the command line of a MySQL program?

Using options on the command line of a MySQL program?

WBOY
Release: 2023-09-08 10:41:02
forward
1097 people have browsed it

在 MySQL 程序的命令行上使用选项?

Let us understand how to use options on the command line of a MySQL program -

Program options specified on the command line follow the following rules -

  • Options are given after the command name.

  • Option arguments begin with one or two dashes, and this depends on whether the option name is the short or long form.

  • Many options have short and long forms. Let us take an example to understand this - -? and --help are the short and long forms of options that instruct the MySQL program to display a help message.

  • Option names are case-sensitive. -v and -V are both legal, but have different meanings.

  • They are the shorthand forms of the --verbose and --version options respectively.

    li>

Some options occupy a value after the option name. Let us take an example to understand this -

Example

−h localhost or −−host=localhost show the MySQL server host to a client program.
Copy after login

The option value provides the program with information about the host name on which the MySQL server is running.

MySQL server includes some command options that can only be specified at startup, and a set of system variables, some of which can be set at startup, runtime, or both.

Use underscores instead of dashes in system variable names. When they are referenced at runtime, they must be written using underscores, as follows -

query

SET GLOBAL general_log = ON;
SELECT @@GLOBAL.general_log;
Copy after login

During server startup, the syntax for system variables is the same as for command options. Therefore, dashes and underscores can be used interchangeably in variable names.

The above is the detailed content of Using options on the command line of a MySQL program?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template