一.
你可以试试这个: select * from xx order by rand() limit 100 二. 是利用系统时间来取
随机数的代码,用C++写的。你参看一下吧。 你可以把随机数的范围限定在0 -- 100 ,之内,作为数组的
下标就可以访问了。 #include <iostream.h> #include <stdlib.h> #include <time.h> int main() { srand((unsigned int) time(NULL)) int i ,j = 1,array[10] while(j != 0) { for(i = 0i <10i++) { array[i] = rand() cout<<array[i]<<endl } cin>>j } system("PAUSE") return 0 }INSERT INTO temp select * from testtable where uname='zhang'
在SQL中 select、insert 、update、delete中insert是比较快的
评论列表(0条)