New to TSQL and trying to decipher the following line of code.
Select Last_Name, First_Name,...etc..., t1.Region, NotCurrentOp into #TEMP.
Since NotCurrentOp is not the name of any field from any table in the from statement I'm concluding that NotCurrentOp refers to a computed column that will be created in new #TEMP table.
Is this true?
If so what value do the rows in this field initially hold? Nulls?
Thanks.
Select Last_Name, First_Name,...etc..., t1.Region, NotCurrentOp into #TEMP.
Since NotCurrentOp is not the name of any field from any table in the from statement I'm concluding that NotCurrentOp refers to a computed column that will be created in new #TEMP table.
Is this true?
If so what value do the rows in this field initially hold? Nulls?
Thanks.