mysql查看帮助

1.按照层次看帮助

“?contents”命令来显示所有可供查询的的分类

mysql> ? 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
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

MySQL 中都支持哪些数据类型,可以执行“? data types”命令:
mysql> ? data types
You asked for help about help category: "Data Types"
For more information, type ‘help <item>‘, where <item> is one of the following
topics:
AUTO_INCREMENT
BIGINT

BINARY
BIT
BLOB
BLOB DATA TYPE
BOOLEAN
。。。。。。

2.快速查阅帮助

在实际应用当中,如果需要快速查阅某项语法时,可以使用关键字进行快速查询。例如,想
知道show 命令都能看些什么东西,可以用如下命令:
mysql> ? show
Name: ‘SHOW‘
Description:
SHOW has many forms that provide information about databases, tables,
columns, or status information about the server. This section describes
those following:
SHOW AUTHORS
SHOW CHARACTER SET [LIKE ‘pattern‘]
SHOW COLLATION [LIKE ‘pattern‘]
SHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [LIKE ‘pattern‘]
SHOW CONTRIBUTORS
SHOW CREATE DATABASE db_name
SHOW CREATE EVENT event_name
SHOW CREATE FUNCTION funcname
。。。。。。
例如,如果想参看CREATE TABLE 的语法,可以使用以下命令:
mysql> ? create table
Name: ‘CREATE TABLE‘
Description:
Syntax:
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name

56
[table_option ...]
[partition_options]
Or:
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name
[(create_definition,...)]
[table_option ...]
[partition_options]
select_statement
、 。。。。。。

3.常用的网络资源

http://dev.mysql.com/downloads/是MySQL 的官方网站,可以下载到各个版本的MySQL 以及
相关客户端开发工具等。
http://dev.mysql.com/doc/提供了目前最权威的MySQL 数据库及工具的在线手册。
http://bugs.mysql.com/这里可以查看到MySQL 已经发布的bug 列表,或者向MySQL 提交bug
报告。
http://www.mysql.com/news-and-events/newsletter/通常会发布各种关于MySQL 的最新消息。

时间: 2024-11-06 22:21:42

mysql查看帮助的相关文章

MySQL查看数据库相关信息

使用MySQL时,需要了解当前数据库的情况,例如当前的数据库大小.字符集.用户等等.下面总结了一些查看数据库相关信息的命令 1:查看显示所有数据库 mysql> show databases; +--------------------+ | Database           | +--------------------+ | information_schema | | INVOICE            | | mysql              | | performance_s

MySQL查看自增ID和表DDL等信息

MySQL查看自增ID和表DDL等信息技术 maybe yes 发表于2015-01-24 21:50 原文链接 : http://blog.lmlphp.com/archives/69  来自 : LMLPHP后院 MySQL 查看数据库表相关信息和自增 ID 方法如下: 方法一 mysql> show create table table_name\G; *************************** 1. row ***************************       

Windows中使用MySQL 查看数据库信息(四)

一.查看MySQL中的所有数据库 show databases; 二.查看当前正在使用的数据库 select database(); 三.查看当前数据库中的所有表 show tables; 四.查看表结构 describe employees; 其中employees为表名 五.显示创建表语句 show create table 表名; 六.查看表的索引信息 select index from employees; 其中employees为表名 七.查看当前连接最后一次插入到表中的标识(已插入)

MySQL 查看约束,添加约束,删除约束 添加列,修改列,删除列

ALTER TABLE:添加,修改,删除表的列,约束等表的定义. 查看列:desc 表名; 修改表名:alter table t_book rename to bbb; 添加列:alter table 表名 add column 列名 varchar(30); 删除列:alter table 表名 drop column 列名; 修改列名MySQL: alter table bbb change nnnnn hh int; 修改列名SQLServer:exec sp_rename't_stude

Mysql查看连接数相关信息

MySQL查看连接数相关信息在 数据库:INFORMATION_SCHEMA 表:PROCESSLIST 表结构如下: mysql> desc PROCESSLIST; +---------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------+-------------+------+-----+---------+-------+ | I

mysql查看表结构命令

mysql查看表结构命令,如下: desc 表名;show columns from 表名;describe 表名;show create table 表名; use information_schemaselect * from columns where table_name='表名'; 顺便记下:show databases;use 数据库名;show tables; 原有一unique索引AK_PAS_Name(PAC_Name)在表tb_webparamcounter中,执行以下sql

Navicat for MySQL 查看BLOB字段内容

Navicat for MySQL 查看BLOB字段内容查看BLOB内容的两种方法: 1. 在查询窗口中选中BLOB字段,点击备注 2.  查看->原始数据模式

mysql查看权限的命令

mysql查看用户权限的命令 1.这里用来查看用户存储过程: show grants for 用户; eg: show grants for [email protected]'localhost';#这样就会把root用户的所有权限,以及相关的存储过程的权限都不查询出来 2.查看创建数据库时的一些参数: show create database dbname; 3.查看创建表时的一些参数: show create table tickets;   #可以查到建表语句

MySQL 查看表结构

mysql查看表结构命令,如下: desc 表名; show columns from 表名; describe 表名; show create table 表名; use information_schema select * from columns where table_name='表名'; 顺便记下: show databases; use 数据库名; show tables; 原有一unique索引AK_PAS_Name(PAC_Name)在表tb_webparamcounter中,

mysql查看连接数排查问题

#mysql查看连接数SHOW VARIABLES LIKE '%max_connections%'; # max_connections 最大连接数 SHOW VARIABLES LIKE '%connection%';# PROCESSLIST; # 通过观察sql来判断.SHOW FULL PROCESSLIST SHOW PROCESSLIST; SHOW STATUS;SHOW PROCESSLIST#show extended-status; SHOW STATUS LIKE '%c