typo3 query: ORDER BY RAND()
Ich brauchte eine Abfrage, die mir 5 beliebige Items zurückliefert. Meine Lösung: //fetch 5 IDs from the mm table $idArr = $GLOBALS[‚TYPO3_DB‘]->exec_SELECTgetRows( ‚uid_local‘, ‚tx_something_user_userarticles_article_mm‘,“, “, ‚RAND()‘, ‚5‘ ); $ids = array(); //save the IDs to $ids foreach($idArr as $k => […]