Heim >Datenbank >MySQL-Tutorial >mysql 中如何随机提取数据库记录_MySQL

mysql 中如何随机提取数据库记录_MySQL

WBOY
WBOYOriginal
2016-06-01 13:59:271163Durchsuche

   帮朋友改个asp的相关产品显示要用到随机读取当前类别的前10个产品,Google了下收藏的
  mysql中随机提取数据库记录

  -------------------------------------------------------------------------------- view plaincopy to clipboardprint?

  select * from tablename order by rand() limit 10

  select * from tablename order by rand() limit 10sqlserver中随机提取数据库记录

  -------------------------------------------------------------------------------- view plaincopy to clipboardprint?

  select top 10 * from tablename order by NEWID()

  select top 10 * from tablename order by NEWID()Access中随机提取数据库记录

  -------------------------------------------------------------------------------- view plaincopy to clipboardprint?

  SELECT top 10 * FROM tablename ORDER BY Rnd(FId)

  SELECT top 10 * FROM tablename ORDER BY Rnd(FId)FId:为你当前表的ID字段名

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn