码迷,mamicode.com
首页 > 数据库 > 详细

SQL Update TOP 、Update Order by 和output的使用

时间:2020-06-22 22:41:27      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:products   pool   desc   with   lock   put   let   create   使用   

update top(1) Products with(updlock,readpast)
set Status = 1
output Deleted.Id as PoolSkuId
from 
(select top 1 Id from Products 
where Deleted = 0 and Status = 0 order by createdTime desc) t1
where Products.Id = t1.Id

  

SQL Update TOP 、Update Order by 和output的使用

标签:products   pool   desc   with   lock   put   let   create   使用   

原文地址:https://www.cnblogs.com/DONET-LC/p/13179333.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!