久久久久精品国产,丰满少妇粗大猛烈进高清播放,久久久97,在线18禁

<wbr id="x3zex"><nav id="x3zex"><em id="x3zex"></em></nav></wbr>

        <s id="x3zex"></s>
        1. <ruby id="x3zex"><nav id="x3zex"><acronym id="x3zex"></acronym></nav></ruby>
          <font id="x3zex"><noscript id="x3zex"></noscript></font>
          0712-2888027 189-8648-0214
          微信公眾號

          孝感風(fēng)信網(wǎng)絡(luò)科技有限公司微信公眾號

          當(dāng)前位置:主頁 > 技術(shù)支持 > MySQL > MySQL語句如何實現(xiàn)從數(shù)據(jù)庫表中查詢隨機(jī)數(shù)據(jù)的記錄

          MySQL語句如何實現(xiàn)從數(shù)據(jù)庫表中查詢隨機(jī)數(shù)據(jù)的記錄

          時間:2016-07-20來源:風(fēng)信官網(wǎng) 點(diǎn)擊: 786次
          MySQL語句如何實現(xiàn)從數(shù)據(jù)庫表中查詢隨機(jī)數(shù)據(jù)的記錄

          1. Oracle,隨機(jī)查詢20條
          select * from
          (
           select  *  from 表名
           order by dbms_random.value
          )
           where rownum <= 20;
           
          2.MS SQL Server,隨機(jī)查詢20條
          select top 20  * from  表名order by newid()
           
          3.My SQL:,隨機(jī)查詢20條
          select  *  from  表名 order by rand() limit 20

          SELECT * FROM phpcms_video where catid=17 order by rand()

          獲取到的隨機(jī)結(jié)果如下圖所示:

          MySQL語句如何實現(xiàn)從數(shù)據(jù)庫表中查詢隨機(jī)數(shù)據(jù)的記錄

          欄目列表
          推薦內(nèi)容
          熱點(diǎn)內(nèi)容
          展開