Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーがデータベースのページにアクセスするたびにビュー列を1ずつ増やしたいのですが、次のようにコードを実行しましたが、常に1が表示されます
var updateCommand = "UPDATE Items SET views=@0 + 1 WHERE id=@1"; viewsdb.Execute(updateCommand, views, id);