我是靠谱客的博主 背后小馒头,最近开发中收集的这篇文章主要介绍mysql 的触发器和授权,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

菜鸟一枚,欢迎大家指点哦

create database that;

use that;

create create table student(sno numeric(6) primary key,  sname char(10) );

insert into student  values (100001,'chen');

insert into student values(100002,'wang');

delimiter //;

create trigger update_student

    before update on student for each row

   begin

        update student  set sname=null   ;

 

   end //;

update student set sname=''ton'  where sno=100001;

select * from  student;

grant select ,update on that.student to nuser@localhost  identified by 'good';

    ///nuser is a new user's name,the user will visite mysql.   good is the password for

    the  new user//

在CMD命令行中进行如下操作

cmd

C:/Program Files/MySQL/MySQL Server 5.5/bin 

(找到MYSQL的BIN 目录)显示为:

C:/Program Files/MySQL/MySQL Server 5.5/bin>

(put in )

mysql -h localhost -u  nuser  -p

(show)

Enter password:

(put in)

good

接下来就可以使用授予的权限了……

  

 

最后

以上就是背后小馒头为你收集整理的mysql 的触发器和授权的全部内容,希望文章能够帮你解决mysql 的触发器和授权所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(68)

评论列表共有 0 条评论

立即
投稿
返回
顶部