我有这样的疑问:
update table1 set quantity=(quantity)+3 where productsid=1
update table1 set quantity=(quantity)+4 where productsid=2
update table1 set quantity=(quantity)+5 where productsid=3
update table1 set quantity=(quantity)+6 where productsid=4
update table1 set quantity=(quantity)+1 where productsid=5
update table1 set quantity=(quantity)+3 where productsid=6
update table1 set quantity=(quantity)+2 where productsid=7
但我正在研究 sqlce,我无法发送所有查询,并且一对一发送需要很长时间,所以我需要一个动态查询,它得到一个与这些查询一样工作的唯一查询。也许使用案例?