CentOS6中的mysql及基本用法

mysql数据库摘要

CentOS6中的mysql及基本用法

1、查看mysql-server包信息

[root@CentOS6 ~]#yum info mysql-server

1528180146(1)

2、安装mysql-server包

[root@CentOS6 ~]#yum install mysql-server

1

注意:安装mysql-server包的时候系统自动帮我们安装了客户端包mysql。

3、客户端登陆mysql

[root@CentOS6 ~]#mysql

CentOS6中的mysql及基本用法0

出现上图所示,表示已经登陆到mysql数据库,可以开始正常的增删改查操作了!

4、mysql数据库的使用

Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 7
Server version: 5.1.73 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.

mysql> help     //根据系统提示输入help或者是\h之后会显示mysql的操作快捷键

mysql> show databases;     //查看当前数据库中所有的数据库列表

3

mysql> system hostname ;\!  ls     //在mysql数据库中执行linux系统命令。前面加system或者\! 

4

mysql> status     //查看当前数据库的状态信息

5

mysql> use  mysql;     //进入mysql数据库

6

mysql> use  mysql;     //进入mysql数据库

6

mysql> show  tables;     //查看mysql数据库的文件内容

7

mysql> select user,host,password  from  user;     //查看mysql数据库中user表中的用户,主机,密码三项内容

8

本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/100427

(6)
JllbcJllbc
上一篇 2018-06-05
下一篇 2018-06-05

相关推荐

  • 变量的理解

    有点绕多动动手就好了

    Linux笔记 2018-04-15
  • 计算机基础知识

    计算机基础知识 计算机系统 计算机的功能 冯诺依曼体系的五大基本部件 操作系统 Linux操作系统的组成 操作系统的功能介绍 开发接口标准 操作系统的分类 Linux 操作系统 Linux的发行版详解 Linux哲学思想 Linux系统镜像站点 计算机系统 计算机系统由硬件 计算机系统由硬件(Hardware) 系统和软件(Software)系统两大部分组成…

    Linux笔记 2018-05-07
  • 第二周作业

    第二周

    Linux笔记 2018-05-20
  • linux 7

    centos启动流程: POST–>BootSquence(BIOS)–>Bootloader(MBR)–>kernel(ramdisk)–>rootfs(switch_root)–>/sbin/init(/etc/inittab,/etc/init/*.conf,/u…

    Linux笔记 2018-08-05
  • 软件包管理 1 —–基本知识 rpm yum

    软件包管理,要做到如何管理软件 ,包括安装 ,卸载, 基本的功能查询,搜索等重点如何使用rpm包yum管理如何编译安装**软件 运行和编译 **ABI:Application Binary Interface 操作系统接口标准,调用2进制程序的接口Windows 与Linux不兼容ELF(Executable and Linkable Format)PE (…

    Linux笔记 2018-04-22