SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- 时间:2009-01-06
-- 内容:修改?改为空
-- =============================================
alter PROCEDURE  pro_TabelUp

AS
declare @index int
set @index=58
while(@index< 149)
begin
UPDATE   NewsList  
SET   NewsListContent=replace(cast(NewsListContent as varchar(max)),'?','')
where NewsListID=@index
set @index=@index+1
END
GO

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-05
  • 2021-12-05
  • 2022-12-23
  • 2021-12-19
  • 2022-02-22
猜你喜欢
  • 2022-12-23
  • 2021-10-05
  • 2022-12-23
  • 2022-01-03
  • 2022-12-23
  • 2022-02-18
  • 2022-12-23
相关资源
相似解决方案