〖orz〗求1条sql语句
想优先 rand() 出来 'phome_ecms_news' 表的 classid limit 1 (并且符合) islast(终极栏目) = 1
然后再在 表 'phome_enewsclass' 里面进行 rand() limit 1
下面sql语句错误..不会写的情况下,只有表述一下思想了.
sql codeselect * from 'phome_ecms_news' where classid = (select classid from 'phome_enewsclass' where islast=1 rand() limit 1) rand() limit 1;
------解决方案--------------------
sql codeselect * from 'phome_ecms_news' where classid in ( select classid from 'phome_enewsclass' where islast=1 order by rand() limit 1 ) order by rand() limit 1;