문제

Don't know why I'm getting stumped on something so small,

but I want to update a chunk of data already in my database.

I want to update table results and change all values in the 'test1' column where currently value is 0 and set it to NULL for all entries.

can someone help me with the code I need to run this in phpmyadmin.

올바른 솔루션이 없습니다

다른 팁

update results set test1 = null where test1 = 0
UPDATE results SET test1=null WHERE test1=0
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top