一个select 语句??
if @debug <> 0
select @chvProperty Property,
@chvValue [Value],
@chvUnit [Unit]
-- check will new string fit
select @insLenProperty = DATALENGTH(@chvProperty),
@insLenValue = DATALENGTH(@chvValue),
@insLenUnit = DATALENGTH(@chvUnit),
@insLenProperties = DATALENGTH(@chvProperties)
这里的
if @debug <> 0
select @chvProperty Property,
@chvValue [Value],
@chvUnit [Unit]
select 语句 起到什么作用,又不是查询,变量也定义过了,
????
不明白
------解决方案--------------------select的作用相当于声明变量和赋值
关于if @debug <> 0,这个应该不是系统提供的吧,至少我目前确实不知道。
楼主能把代码贴详细点么