if statement - Is it possible to use IF(cond1 AND cond2,result,else result) in MySQL? -


i want update query if consecutive 5 column have 0 value. first idea is:

update `table_name`  set `count` = if(`col1`=0.00 ,                   `col2`=0.00 ,                   `col3`=0.00 ,                   `col4`=0.00 ,                   `col5`=0.00,  count+1, count) 

but think using , in if condition isn't work. idea? before

using and in if valid, grijesh suggets, using condition in where clause usual way it.

your query though shouldn't give errors.


Comments

Popular posts from this blog

ios - iPhone/iPad different view orientations in different views , and apple approval process -

java Extracting Zip file -

php - HTTP_REFERER woes: How can I allow access to a specific page, only when a visitor has visited another specific page beforehand? -