最新消息: 新版网站上线了!!!

mysql where if的例子

  1. SELECT * FROM tests WHERE IF(STATUS=1,FIND_IN_SET(4,VALUE),STATUS) 
  2. //例子
  3.  
  4. DROP TABLE IF EXISTS `tests`; 
  5.  
  6. CREATE TABLE `tests` ( 
  7.   `intint(14) NOT NULL AUTO_INCREMENT, 
  8.   `value` varchar(255) DEFAULT NULL
  9.   `status` int(1) DEFAULT '0'
  10.   PRIMARY KEY (`int`) 
  11. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; 
  12.  
  13. /*Data for the table `tests` */ 
  14.  
  15. insert  into `tests`(`int`,`value`,`status`) values (1,'4,5,6',0),(2,'4,5,7,8',1); 

 

.....

转载请注明:谷谷点程序 » mysql where if的例子