摘要:
declare @ids varchar(50) declare @str varchar(200) declare @i int set @ids='11,222,333'+',' while @ids '' begin set @str = substring(@ids,1,charindex(',',@ids)-1) set @ids = replace(@ids,@str+',',''... 阅读全文
摘要:
2008年6月25日 11:12:28 1.检查要创建的表是否存在? IF OBJECT_ID('Price_history','U') IS NOT NULL DROP TABLE Price_history 2.复到一个表的表结构以开成一个新表。 SELECT 1 AS ProductID,UnitPrice AS OldPrice,UnitPrice AS NewPrice,GETD... 阅读全文