4

RANDOMUser_namesを取得する方法。

SELECT a.mod_name, u.user_name, a.id from type a, users u 
WHERE a.id=u.mod_type
ORDER BY mod_type Desc ";
4

3 に答える 3

4

あなたはそのために使うことができますORDER BY RAND()

SELECT a.mod_name, u.user_name, a.id
FROM type a, users u
WHERE a.id=u.mod_type
ORDER BY RAND()
于 2012-11-19T04:35:25.953 に答える
3

どうですか

編集:

select a.mod_name, u.user_name, a.id from type a, users u where a.id=u.mod_type 
order by mod_type DESC, rand();

于 2012-11-19T04:41:35.540 に答える
2

MysqlはRAND()関数をサポートします

 select a.mod_name, u.user_name, a.id from type a,
 users u where a.id=u.mod_type
 order by RAND(),mod_type Desc ";
于 2012-11-19T04:36:28.637 に答える