当前位置: 代码迷 >> ASP.NET >> sql 随机抽取数据解决思路
  详细解决方案

sql 随机抽取数据解决思路

热度:5422   发布时间:2013-02-25 00:00:00.0
sql 随机抽取数据
查了好多资料,都是newid()。可是newid()太慢了,需要等好几分钟

------解决方案--------------------------------------------------------
C# code
  private static int GetNewSeed()        {            byte[] rndBytes = new byte[4];            RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider();            rng.GetBytes(rndBytes);            return BitConverter.ToInt32(rndBytes, 0);        }
  相关解决方案