關於SQLite的偽隨機數

來源:互聯網
上載者:User

標籤:sqlite   res   and   class   else   --   返回   div   隨機   

--random() 的傳回值範圍是:[-2^63,(2^63)-1],而通常要的是最小為 0的隨機數,於是就不能直接用了,解決辦法:

select 2016*(‘0.‘||case col>0 when 1 then col else -col end) result from(select random() col);

--傳回值帶小數。或者:

select case col>0 when 1 then col else -col end result from(select random()/(-9223372036854775808/2016) col);

--傳回值不帶小數。

--為啥網路上大都寫成從 -9223372036854775808 到 9223372036854775807?對於不知道的人,數字含義淡了很多,比如我一開始只把它當是一個字串型數字。

關於SQLite的偽隨機數

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.