摘要:SQL newid() 用法
newid() //隨機
select *
from [資料表]
order by NEWID()
取出的資料作隨機的排序
測試環境 SQL SERVER 2008 R2
insert into select 使用其他資料表 新增
INSERT INTO MyTable (PriKey, Description) SELECT ForeignKey, Description FROM SomeView;