从数据库A更新数据B的表.sql 735 B

123456789101112131415
  1. declare @orcount int -- 满足条件的订单数量;
  2. declare @orderNum nvarchar(50) -- 订单号;
  3. declare @orderSec nvarchar(50) -- 景点名;
  4. declare @orderDate nvarchar(50) -- 预约日期;
  5. declare @erroDate nvarchar(50) -- 错误的日期;
  6. set @erroDate = '2016-16'
  7. --查询出日期;
  8. select @orcount = count(id) from [db].[dbo].[dindanjd] where [bookingdate] = @erroDate
  9. while @orcount > 0
  10. begin
  11. select top 1 percent @orderNum=id, @orderSec = [name] from [db].[dbo].[dindanjd] where [bookingdate] = @erroDate
  12. select @orderDate = [bookingdate] from [db2].[dbo].[dindanjd] where id = @orderNum and [name] = @orderSec
  13. update [db].[dbo].[dindanjd] set [bookingdate] = @orderDate where id = @orderNum and [name] = @orderSec
  14. set @orcount = @orcount-1
  15. end