sql语句笔记

1、在数据库中更新计数时,对计数值减1,如果为负值,则为0

update test set cnt = 
case 
	when cnt > 0  then cnt - 1 
	else cnt 
end 
where id = 1

你可能感兴趣的:(数据库,mysql)