Comando HELP

Sintaxis

HELP palabra_buscada

Description

El comando HELP puede ser utilizado en cualquier cliente MariaDB al igual que la Línea de comandos cliente mysql, para conseguir ayuda básica con la sintaxis y una breve descripción de la mayoría de comandos y funciones.

Si proporcionas un argumento al comando help, el cliente mysql lo utiliza como texto de búsqueda para acceder a la ayuda en el lado del servidor. El correcto funcionamiento de este comando requiere que las tablas de ayuda en la base de datos mysql sean inicializadas con contenidos de información.

Si no existe concordancia con el texto buscado, la búsqueda falla y aparece un mensaje con información sobre cómo acceder a la lista de todos los temas de ayuda existentes:

HELP algo

Nothing found
Please try to run 'help contents' for a list of all accessible topics

Utiliza help contents para ver este listado de categorías de ayuda:

HELP contents
You asked for help about help category: "Contents"
For more information, type 'help <item>', where <item> is one of the following
categories:

   Account Management
   Administration
   Compound Statements
   Data Definition
   Data Manipulation
   Data Types
   Functions
   Functions and Modifiers for Use with GROUP BY
   Geographic Features
   Language Structure
   Plugins
   Table Maintenance
   Transactions
   User-Defined Functions
   Utility

Si el texto de búsqueda concuerda con varios elementos, MariaDB muestra una lista de los mismos:

HELP create
Many help items for your request exist.
To make a more specific request, please type 'help <item>',
where <item> is one of the following
topics:
   CREATE DATABASE
   CREATE EVENT
   CREATE FUNCTION
   CREATE FUNCTION UDF
   CREATE INDEX
   CREATE PROCEDURE
   CREATE SERVER
   CREATE TABLE
   CREATE TABLESPACE
   CREATE TRIGGER
   CREATE USER
   CREATE VIEW
   SHOW
   SHOW CREATE DATABASE
   SHOW CREATE EVENT
   SHOW CREATE FUNCTION
   SHOW CREATE PROCEDURE
   SHOW CREATE TABLE
   SPATIAL

Utiliza uno de dichos elementos como nuevo texto de búsqueda para ver la ayuda sobre el mismo:

La ayuda es proporcionada con el servidor MariaDB y las tablas de ayuda son completadas con los scripts mysql_install_dbo fill_help_table.sql .

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.