我注意到在编写插入表变量的 sproc 值时,其顺序与插入顺序不同。有没有办法在不添加另一列进行排序的情况下禁用这种自动排序?想到的想法是正在创建的自动索引或一些排序规则设置......有什么想法吗?
访问http://sqlfiddle.com/#!3/e1c06/13看看我的意思
declare @tmpTbl table (name varchar(100))
insert into @tmpTbl
select 'mark'
union
select 'frank'
union
select 'sharon'
union
select 'jason'
select * from @tmpTbl