# 命令行操作Mysql的常用命令-查询
>[success]熟练掌握命令行操作Mysql是十分必要的。
## 1. 连接MYSQL
~~~
mysql -uroot -p
~~~
## 2. 查看数据库列表
~~~
show databases;
~~~
![](https://box.kancloud.cn/2512467ad398bd6cd909700fa290a646_348x280.png)
## 3. 选择数据库
~~~
use 要操作的数据库名称;
~~~
## 4. 查看当前数据库中的表
~~~
show tables;
~~~
![](https://box.kancloud.cn/398c8464ff2c1fbe3723bee0899f6f4d_425x348.png)
## 5. 查看表结构
~~~
desc 要查看的表名;
~~~
![](https://box.kancloud.cn/ee91ce93df791f463dfd946c98a61a7c_928x539.png)
## 6. 查询表中列的注释信息
~~~
select * from information_schema.columns
where table_schema = 'db' #表所在数据库
and table_name = 'tablename' ; #你要查的表
~~~
## 7.只查询列名和注释
~~~
select column_name, column_comment from information_schema.columns where table_schema ='db' and table_name = 'tablename' ;
~~~
## 8.查看表的注释
~~~
select table_name,table_comment from information_schema.tables where table_schema = 'db' and table_name ='tablename'
~~~
## 创建索引
方法一:使用ALTER TABLE语句创建索引
~~~
alter table table_name add index index_name (column_list) ;
alter table table_name add unique (column_list) ;
alter table table_name add primary key (column_list) ;
~~~
方法二:使用CREATE INDEX语句对表增加索引
~~~
create index index_name on table_name (column_list) ;
create unique index index_name on table_name (column_list) ;
~~~
## 10.删除索引
~~~
drop index index_name on table_name ;
alter table table_name drop index index_name ;
alter table table_name drop primary key ;
~~~
## 11.判断数据表在数据库是否存在
~~~
SHOW TABLES LIKE 'by_currency' ;
//或
drop table 'by_currency' if exists 'by_currency' ;
~~~
- 前言
- PHP获取服务器信息
- PHP中的常用函数-新手必备知识
- 日期时间相关的函数
- 时区设置
- time函数
- strtotime 时间戳
- date函数
- mktime函数
- 联合使用 date() 和 mktime()
- PHP数据类型相关的函数
- PHP数组相关的函数
- array函数
- 数组的排序
- sort()和rsort()函数
- asort()和arsort()函数
- ksort()和krsort()函数
- array_multisort()函数
- array_reverse函数
- 数组的遍历
- 数组中新增和删除元素
- 数组头部插入和删除元素
- 数组尾部插入和删除元素
- 删除数组中重复的元素
- 删除数组中指定的元素
- 数组的合并
- 随机/打乱已知数组
- range函数
- 数组去除重复
- PHP常用功能函数
- URL地址处理函数
- post/get请求
- PHP字符串相关的函数
- PHP文件系统
- PHP正则表达式
- 正则表达式语法规则
- POSIX扩展的正则表达式函数
- 查找字串函数
- 替换字符串函数
- Perl兼容的正则表达式函数
- PHP中类的应用
- 中文编码
- 关于stdClass
- 变量相关函数
- unset
- PHP数值相关的函数
- 数值取整
- 开发工具与开发环境使用技巧
- sublime
- 常用插件
- Atom
- 常用插件
- 常见问题
- Visual Studio Code
- vscode常用插件
- 编程推荐字体
- MAC下开发常识
- MAC下的常用设置
- MAC下的常用开发工具
- MAC下XAMMP的常见问题
- Apache配置基础
- PhpStrom
- php中的常见问题
- 文件上传相关问题
- API接口中常见问题
- 关于缓冲区问题
- PHP中注意事项
- 条件判断
- PHP文件管理模块
- 文件管理源码
- 文件管理的常用函数
- 文件管理中文乱码处理
- 自定义功能函数
- 文件下载
- PHP常用头信息定义汇总
- 常见PHP网页木马
- 加密算法
- 1. Base58可逆加密
- 2. AES加密/解密
- mysql数据库操作
- 命令行操作Mysql常用令行-查询
- 命令行操作Mysql常用令行-操作
- Mysql使用中的技巧
- 在线数据库管理中常用命令
- sql show命令
- mysql数据库的备份与恢复
- 二进制日志介绍
- 二进制日志常用命令
- ThinkPHP
- 数据迁移
- 常见问题
- 验证码问题
- API接口中的异常处理
- API接口安全
- 解决跨域问题
- 自定义实用功能函数