
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
MySQL Client Server-Side Help
Let us understand the MySQL client-server side help −
mysql> help search_string
If an argument is provided to the above ‘help’ command, mysql will use it as a search string to access server-side help from the contents of the MySQL Reference Manual. The proper operation of this command needs that the help tables in the mysql database should be initialized with help topic information.
If there is no match for the search string, then the search operation fails. Let us take an example to understand this −
mysql> help me
Output
Nothing found Please try to run 'help contents' for a list of all accessible topics
We can use the help contents command to see a list of the help categories. Let us take an example to understand this −
mysql> help contents
Output
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 Data Definition Data Manipulation Data Types Functions Functions and Modifiers for Use with GROUP BY Geographic Features Language Structure Plugins Storage Engines Stored Routines Table Maintenance Transactions Triggers
If the search string matches multiple items, then mysql will show a list of matching topics. Let us take an example to understand this −
mysql > help logs
Output
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: SHOW SHOW BINARY LOGS SHOW ENGINE SHOW LOGS
- Related Articles
- How can we get “MySQL server-side help”?
- Difference between Client-side filter and Server-side filters in Cyber Security
- How can we get the list of MySQL server-side help categories?
- Client Server Computing
- How to Setup SSL for MySQL Server and Client on Linux
- Operating Systems Client/Server Communication
- Client-Server Programming in Android
- Difference between Client and Server
- Structure of a Client Server System
- What is a client-server system?
- XMLRPC server and client modules in Python
- Centralized and Client Server Architectures for DBMSs
- Client-Server Architecture - Everything You Should Know
- Difference between Client/Server and Distributed DBMS
- Client-side image processing with HTML

Advertisements