본문 바로가기
MySql

MySQL 쿼리에서 IF ELSE 문을 작성하는 방법

by 베이스 공부 2020. 9. 24.
반응형

MySQL 쿼리에서 IF ELSE 문을 어떻게 작성합니까?

이 같은:

mysql_query("...(irrelevant code).. IF(action==2&&state==0){state=1}");

그런 다음 내 배열에서 다음을 수행 할 수 있습니다.

 $row['state'] 
//this should equal 1, the query should not change anything in the database, 
//just the variable for returning the information

 

해결 방법

 


그들은 다음과 같이 보입니다 :

SELECT col1, col2, (case when (action = 2 and state = 0) 
 THEN
      1 
 ELSE
      0 
 END)
 as state from tbl1;

 

참조 페이지 https://stackoverflow.com/questions/8763310

 

 

반응형

댓글