数据库

MySQL安装

MySQL是一种开放源码的关系型数据库管理系统(RDBMS),MySQL数据库系统使用最常用的数据库管理语言——结构化查询语言(SQL)进行数据库管理。在WEB应用方面MySQL是最好的RDBMS(Relation Database Management System ,关系数据库管理系统)应用软件之一。

前提条件

  • 安装MySQL服务端、客户端
  • 客户端连接服务端
  • 客户端发送命令给服务端MySQL服务的接受命令并执行相应操作
  • 下载安装包“mysql-5.6.33-linux-glibc2.5-x86_64.tar.gz”
# 安装依赖yum -y install perl perl-devel autoconf libaio   把下载的安装包移动到/usr/local/下。
  • 解压
tar zxvf mysql-5.6.33-linux-glibc2.5-x86_64.tar.gz
  • 复制解压后的mysql目录到系统的本地软件目录
cp mysql-5.6.33-linux-glibc2.5-x86_64 /usr/local/mysql -r
  • 添加系统mysql组和mysql用户
groupadd mysqluseradd -r -g mysql -s /bin/false mysql
注意:Because the user is required only for ownership purposes, not login purposes, the useradd command uses the -r and -s /bin/false options to create a user that does not have login permissions to your server host. Omit these options if your useradd does not support them.
  • 进入安装mysql软件目录,修改目录拥有者为mysql用户
cd mysql/chown -R mysql:mysql ./
  • 安装数据库,此处可能出现错误。
./scripts/mysql_install_db --user=mysql

FATAL ERROR: please install the following Perl modules before executing scripts/mysql_install_db:Data::Dumper  #解决方法:yum install -y perl-Data-Dumper
  • 修改当前目录拥有者为root用户
    
chown -R root:root ./
  • 修改当前data目录拥有者为mysql用户
chown -R mysql:mysql data

—————————————————————————————————————— 到此数据库安装完毕

  • mysql服务开机自启动

    添加开机启动,把启动脚本放到开机初始化目录。cp support-files/mysql.server /etc/init.d/mysql# 赋予可执行权限chmod +x /etc/init.d/mysql# 添加服务chkconfig --add mysql # 显示服务列表chkconfig --list 
    
![image](http://upload-images.jianshu.io/upload_images/13008160-43c7185aa482dffb.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
如果看到mysql的服务,并且3,4,5都是on的话则成功,如果是off,则执行 chkconfig --level 345 mysql on
  • 启动mysql服务
#创建缺少的文件夹mkdir /var/log/mariadbservice mysql start正常提示信息:Starting MySQL. SUCCESS!
  • 把mysql客户端放到默认路径
ln -s /usr/local/mysql/bin/mysql /usr/local/bin/mysql

附:建议使用软链过去,不要直接包文件复制,便于系统安装多个版本的mysql

通过使用 mysql -uroot -p 连接数据库(默认数据库的root用户没有密码,这个需要设置一个密码)。

错误信息:ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) 解决方法:打开/etc/my.cnf,看看里面配置的socket位置是什么目录。“socket=/var/lib/mysql/mysql.sock”路径和“/tmp/mysql.sock”不一致。建立一个软连接:ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock

到这里任务算是完成了。之后就可以创建数据库用户,然后使用数据库了。

image

MySQL操作

连接数据库

mysql  -u user -p                   例:mysql -u root -p
  • 常见错误
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2), it means that the MySQL server daemon (Unix) or service (Windows) is not running.
  • 退出连接
QUIT 或者 Ctrl+D

查看、创建

默认数据库:             mysql - 用户权限相关数据             test - 用于用户测试数据             information_schema - MySQL本身架构相关数据 创建数据库:                    create database db1 DEFAULT CHARSET utf8 COLLATE utf8_general_ci;     # utf8编码
               create database db1 DEFAULT CHARACTER SET gbk COLLATE gbk_chinese_ci; # gbk编码
使用数据库:     use db1;
  • 显示当前使用的数据库中所有表:SHOW TABLES;

用户管理

创建用户    create user '用户名'@'IP地址' identified by '密码';删除用户    drop user '用户名'@'IP地址';修改用户    rename user '用户名'@'IP地址'; to '新用户名'@'IP地址';;修改密码    set password for '用户名'@'IP地址' = Password('新密码')

注:用户权限相关数据保存在mysql数据库的user表中,所以也可以直接对其进行操作(不建议)

权限管理

mysql对于权限的限制:

  • 数据库及内部其他权限
            数据库名.*           数据库中的所有            数据库名.表          指定数据库中的某张表            数据库名.存储过程     指定数据库中的存储过程            *.*                所有数据库
  • 用户和IP的权限
            用户名@IP地址         用户只能在改IP下才能访问            用户名@192.168.1.%   用户只能在改IP段下才能访问(通配符%表示任意)            用户名@%             用户可以再任意IP下访问(默认IP地址为%)
  • 查看权限
show grants for '用户'@'IP地址' 
  • 授权
grant  权限 on 数据库.表 to   '用户'@'IP地址'
  • 取消授权
revoke 权限 on 数据库.表 from '用户'@'IP地址'

授权实例: grant all privileges on db1.tb1 TO '用户名'@'IP' grant select on db1.* TO '用户名'@'IP' grant select,insert on *.* TO '用户名'@'IP' revoke select on db1.tb1 from '用户名'@'IP'

mysql表操作

  • 查看表
show tables;                    # 查看数据库全部表 select * from 表名;             # 查看表所有内容
  • 创建表
create table 表名(    列名  类型  是否可以为空,    列名  类型  是否可以为空)ENGINE=InnoDB DEFAULT CHARSET=utf8
实例 CREATE TABLE `tab1` (  `nid` int(11) NOT NULL auto_increment,                   # not null表示不能为空,auto_increment表示自增  `name` varchar(255) DEFAULT zhangyanlin,                 # default 表示默认值  `email` varchar(255),  PRIMARY KEY (`nid`)                                      # 把nid列设置成主键) ENGINE=InnoDB DEFAULT CHARSET=utf8;

注:

  1. 默认值,创建列时可以指定默认值,当插入数据时如果未主动设置,则自动添加默认值
  2. 自增,如果为某列设置自增列,插入数据时无需设置此列,默认将自增(表中只能有一个自增列)注意:1、对于自增列,必须是索引(含主键)2、对于自增可以设置步长和起始值
  3. 主键,一种特殊的唯一索引,不允许有空值,如果主键使用单个列,则它的值必须唯一,如果是多列,则其组合必须唯一。
  • 删除表
drop table 表名
  • 清空表内容
delete from 表名truncate table 表名
  • 修改表

    添加列:   alter table 表名 add 列名 类型删除列:   alter table 表名 drop column 列名修改列:          alter table 表名 modify column 列名 类型;  -- 类型          alter table 表名 change 原列名 新列名 类型; -- 列名,类型  添加主键:          alter table 表名 add primary key(列名);删除主键:          alter table 表名 drop primary key;          alter table 表名  modify  列名 int, drop primary key;  添加外键: alter table 从表 add constraint 外键名称(形如:FK_从表_主表) foreign key 从表(外键字段) references 主表(主键字段);删除外键: alter table 表名 drop foreign key 外键名称  修改默认值:ALTER TABLE testalter_tbl ALTER i SET DEFAULT 1000;删除默认值:ALTER TABLE testalter_tbl ALTER i DROP DEFAULT;
    
推荐使用Navicat Premium。
  • 基本数据类型

MySQL的数据类型大致分为:数值、时间和字符串

mysql表内容操作

1、增 insert into 表 (列名,列名...) values (值,值,...)insert into 表 (列名,列名...) values (值,值,...),(值,值,值...)insert into 表 (列名,列名...) select (列名,列名...) from 表例:    insert into tab1(name,email) values('zhangyanlin','[email protected]')2、删 delete from 表                                      # 删除表里全部数据delete from 表 where id=1 and name='zhangyanlin'   # 删除ID =1 和name='zhangyanlin' 那一行数据3、改 update 表 set name = 'zhangyanlin' where id>14、查 select * from 表select * from 表 where id > 1select nid,name,gender as gg from 表 where id > 1a、条件判断where     select * from 表 where id > 1 and name != 'aylin' and num = 12;    select * from 表 where id between 5 and 16;    select * from 表 where id in (11,22,33)    select * from 表 where id not in (11,22,33)    select * from 表 where id in (select nid from 表)b、通配符like     select * from 表 where name like 'zhang%'  # zhang开头的所有(多个字符串)    select * from 表 where name like 'zhang_'  # zhang开头的所有(一个字符)c、限制limit     select * from 表 limit 5;            - 前5行    select * from 表 limit 4,5;          - 从第4行开始的5行    select * from 表 limit 5 offset 4    - 从第4行开始的5行d、排序asc,desc     select * from 表 order by 列 asc              - 根据 “列” 从小到大排列    select * from 表 order by 列 desc             - 根据 “列” 从大到小排列    select * from 表 order by 列1 desc,列2 asc    - 根据 “列1” 从大到小排列,如果相同则按列2从小到大排序 e、分组group by     select num from 表 group by num    select num,nid from 表 group by num,nid    select num,nid from 表  where nid > 10 group by num,nid order nid desc    select num,nid,count(*),sum(score),max(score),min(score) from 表 group by num,nid    select num from 表 group by num having max(id) > 10     特别的:group by 必须在where之后,order by之前

你可能感兴趣的:(数据库)