我正在使用特定列的一些新值更新表,如下所示,因此我正在更新表 Prepay,列 PrepayTransactionDesc,在 prepayId 指示的某些流上
update Prepay
set PrepayTransactionDesc = 'Funded Repeat Voucher 153429'
where prepayId = 58045
它工作正常,但我想做多次更新。我尝试了几种不同的方法,但都失败了。我当时试图这样做是在使用 CASE 的时候。
例如,我有以下 prepayid 和 prepaytransactiondesc 字段
57770 Funded Repeat Voucher 153118
57771 Funded Repeat Voucher 153119
57772 Funded Repeat Voucher 153120
57773 Funded Repeat Voucher 153121
57774 Funded Repeat Voucher 153122
57775 Funded Repeat Voucher 153123
57776 Funded Repeat Voucher 153124
57894 Funded Repeat Voucher 153276
57895 Funded Repeat Voucher 153277
57896 Funded Repeat Voucher 153278
我将如何在 1 内完成它们?这不可能那么困难,但是当我尝试完成这项任务时,我似乎遗漏了一些东西。