I'm executing a query which I want to randomize query results from a drupal database.
here's what I have done...
$res=db_query("SELECT DISTINCT nid FROM content_type_event ORDER BY RANDOM()");
but this query doesn't work. what's wrong with this query? please help me to solve this?
Thanks a lot...