>  기사  >  데이터 베이스  >  mysql中的enum和set类型_MySQL

mysql中的enum和set类型_MySQL

WBOY
WBOY원래의
2016-06-01 13:38:56940검색

bitsCN.com


mysql中的enum和set类型

 

mysql中的enum和set其实都是string类型的而且只能在指定的集合里取值, 

不同的是set可以取多个值,enum只能取一个 

Sql代码  

CREATE TABLE `20121101_t` (  

  `id` int(11) NOT NULL AUTO_INCREMENT,  

  `name` varchar(20) NOT NULL,  

  `cl` set('x','w','r') NOT NULL,  

  `c2` enum('f','d') NOT NULL,  

  PRIMARY KEY (`id`)  

) ENGINE=InnoDB   

 

insert into 20121101_t  

values(null,'a.txt','r,w','d');  

  

insert into 20121101_t  

values(null,'b.txt','r,w','f');  

 

比如给b.txt文件加上执行权限 

Sql代码  

update 20121101_t set cl = cl|1 where id =2  

 

1是因为x权限出现在了第一个 

 

再比如给b.txt文件去掉写权限 

Sql代码  

update 20121101_t set cl = cl&~2 where id =2  

 

这时再看 

Sql代码  

select * from 20121101_t  

 

1 a.txt w,r d 

2 b.txt x,r f 

 

可以仿照linux下chmod的用法,直接用数字表示权限 

比如把b.txt变成只读 

Sql代码  

update 20121101_t set cl = 4 where id =2  

 

比如要找到所有包含了读权限的文件 

Sql代码  

select * from 20121101_t where cl&4  

或者 

Sql代码  

select * from 20121101_t where FIND_IN_SET('r',cl)>0  

 

enum就相对简单了,比如把a.txt从文件夹变成文件 

Sql代码  

update 20121101_t set c2 = 'f' where id =1  

 

bitsCN.com
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.