CentOS6中的mysql及基本用法
1、查看mysql-server包信息
[root@CentOS6 ~]#yum info mysql-server
2、安装mysql-server包
[root@CentOS6 ~]#yum install mysql-server
注意:安装mysql-server包的时候系统自动帮我们安装了客户端包mysql。
3、客户端登陆mysql
[root@CentOS6 ~]#mysql
出现上图所示,表示已经登陆到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 distributionCopyright (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; //查看当前数据库中所有的数据库列表
mysql> system hostname ;\! ls //在mysql数据库中执行linux系统命令。前面加system或者\!
mysql> status //查看当前数据库的状态信息
mysql> use mysql; //进入mysql数据库
mysql> use mysql; //进入mysql数据库
mysql> show tables; //查看mysql数据库的文件内容
mysql> select user,host,password from user; //查看mysql数据库中user表中的用户,主机,密码三项内容
本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/100427