用SQL得到全排列

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

create table Elements
(
    i int not null primary key
)
GO
insert into Elements
values (1),(2),(3),(4),(5),(6),(7);