I know close to zero when it comes to SQL.
I've been looking in the code of a theme I have and it's pulling the images in order
$get_imgs = mysql_query("SELECT file FROM uploaded_images ORDER BY id DESC LIMIT 0, $results");
How can I change the order to random?
Would I just change the ORDER to RANDOM?