![]() | SQXVectorToTable Method |
Namespace: sqx
public static int VectorToTable( Object ID, Vector V )
declare @V sqx.Vector = sqx.RandomVector(3,1), @ID int = 10000 exec sqx.VectorToTable NULL, @V print '******' exec sqx.VectorToTable @ID, @V /* 1 2 3 ---------------------- ---------------------- ---------------------- 0.248668584157093 0.110743977181029 0.467010679872246 ****** ID 1 2 3 ----------- ---------------------- ---------------------- ---------------------- 10000 0.248668584157093 0.110743977181029 0.467010679872246*/