清除多余字符 --清除多余字符 --' --char(9) 水平制表符 --char(10)换行键 --char(13)回车键 REPLACE( REPLACE( REPLACE(REPLACE([ProductID],'''','') , CHAR(10) ,''),char(9),''),char(13),'') 循环输出ID 00000000# declare @x int declare @id varchar(10) set @x = 0 while(@x <= 30) begin s…