在两行数据之间交换值
- 作者: 神仙指
- 来源: 51数据库
- 2022-12-01
问题描述
以下 T-SQL 代码段有效,但我想知道是否有更聪明和/或更简洁的方法来完成两个不同行之间的字段值交换.(为简单起见,代码具有硬编码的 pkey 值.)
The following T-SQL code segment works but i'm wondering if there's a cleverer and/or less verbose way to accomplish the swapping of field values between two different rows. (The code has hard-coded pkey values for simplicity.)
BEGIN TRAN; declare @swapFormSeqA int; declare @swapFormSeqB int; SELECT @swapFormSeqA = DisplaySeq FROM CustomCatalogForm WHERE CustomCatalogFormId = 1; SELECT @swapFormSeqB = DisplaySeq FROM CustomCatalogForm WHERE CustomCatalogFormId = 2; UPDATE CustomCatalogForm SET DisplaySeq = @swapFormSeqB WHERE CustomCatalogFormId = 1; UPDATE CustomCatalogForm SET DisplaySeq = @swapFormSeqA WHERE CustomCatalogFormId = 2; COMMIT TRAN;
我专门使用 Sql2k5,所以 2** 不是一个选项.
i'm using Sql2k5 specifically so 2** is not an option.
推荐答案
你可以这样做:
begin tran declare @sum int select @sum = sum(DisplaySeq) from CustomCatalogForm where CustomCatalogFormId in (1,2) update CustomCatalogForm set DisplaySeq = @sum - DisplaySeq where CustomCatalogFormId in (1,2) commit tran
推荐阅读
热点文章
检查拆分键盘
0
带有“上一个"的工具栏和“下一个"用于键盘输入AccessoryView
0
Activity 启动时显示软键盘
0
UIWebView 键盘 - 摆脱“上一个/下一个/完成"酒吧
0
在 iOS7 中边缘滑动时,使键盘与 UIView 同步动画
0
我的 iOS 应用程序中的键盘在 iPhone 6 上太高了.如何在 XCode 中调整键盘的分辨率?
0
android:inputType="textEmailAddress";- '@' 键和 '.com' 键?
0
禁用 iPhone 中键盘的方向
0
Android 2.3 模拟器上的印地语键盘问题
0
keyDown 没有被调用
0
