本文介绍了更新记录的计数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的所有人,
i有一个表,它有2个列,1)ItemCode 2)issuedQty。
数据结构:
第一次,
行号:1
商品编号:01
IssuedQty:0
更新/在桌面上插入一些记录。
R否:1项目代码01 IssuedQty:1,所以更新计数是1
更新/插入一些记录表格。
R否:1商品代码01 IssuedQty:2,所以更新数量是2
如何在SQL中的特定列中获取更新计数。
Dear All,
i have a One Table , It has 2 Columns ,1 )ItemCode 2)issuedQty.
Data Structure:
in First Time,
Row No :1
Itemcode : 01
IssuedQty :0
Update/Insert some Record on the table.
R No:1 Itemcode 01 IssuedQty :1 ,So Update Count is 1
Update/Insert some Record on the table.
R No:1 Itemcode 01 IssuedQty :2 ,So Update Count is 2
How to get Count of Update in Particular Column in SQL .
推荐答案
这篇关于更新记录的计数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!