{"id":1996,"date":"2006-12-02T10:55:55","date_gmt":"2006-12-02T17:55:55","guid":{"rendered":"http:\/\/hi-alex.com\/?p=1996"},"modified":"2006-12-02T10:55:55","modified_gmt":"2006-12-02T17:55:55","slug":"sql-to-select-a-random-row","status":"publish","type":"post","link":"http:\/\/www.hi-alex.com\/?p=1996","title":{"rendered":"SQL to Select a Random Row"},"content":{"rendered":"<p>MySQL:[code=sql]SELECT column FROM table ORDER BY RAND() LIMIT 1[\/code]<br \/>\nPostgreSQL:[code=sql]SELECT column FROM table ORDER BY RANDOM() LIMIT 1[\/code]<br \/>\nMicrosoft SQL Server:[code=sql]SELECT TOP 1 column FROM table ORDER BY NEWID() [\/code]<br \/>\nIBM DB2:[code=sql]SELECT column FROM table ORDER BY RAND() FETCH FIRST 1 ROWS ONLY[\/code]<br \/>\nOracle:[code=sql]SELECT column FROM<br \/>\n( SELECT column FROM table<br \/>\nORDER BY dbms_random.value )<br \/>\nWHERE rownum = 1[\/code]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>MySQL:[code=sql]SELECT column FROM table ORDER BY RAND() LIMIT 1[\/code] PostgreSQL:[code=sql]SELECT column FROM table ORDER BY RANDOM() LIMIT 1[\/code] Microsoft SQL Server:[code=sql]SELECT TOP 1 column FROM table ORDER BY NEWID() [\/code] IBM DB2:[code=sql]SELECT column FROM table ORDER BY RAND() FETCH FIRST 1 ROWS ONLY[\/code] Oracle:[code=sql]SELECT column FROM ( SELECT column FROM table ORDER BY dbms_random.value ) [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[],"class_list":["post-1996","post","type-post","status-publish","format-standard","hentry","category-database"],"_links":{"self":[{"href":"http:\/\/www.hi-alex.com\/index.php?rest_route=\/wp\/v2\/posts\/1996","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/www.hi-alex.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.hi-alex.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.hi-alex.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.hi-alex.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1996"}],"version-history":[{"count":0,"href":"http:\/\/www.hi-alex.com\/index.php?rest_route=\/wp\/v2\/posts\/1996\/revisions"}],"wp:attachment":[{"href":"http:\/\/www.hi-alex.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1996"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.hi-alex.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1996"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.hi-alex.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1996"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}