前端之家收集整理的这篇文章主要介绍了
sql-server – SQL增量整数列,即使为null,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个
sql:
update entity_table set views = views + 1 where id = {id of entity}
views列可以为空.因此,仅当列的值不为null时才有效.
如果它为null,如何将此值设置为1并以其他方式增加?
谢谢.
UPDATE entity_table
SET views = Coalesce(views,0) + 1
原文链接:https://www.f2er.com/mssql/77976.html