获取多个栏目下的新闻,怎么写SQL语句?
不用存储过程!!     
 下面是获取一个栏目的新闻 
 select   *   from   news   where   class=3      --   获取ID   为3   的栏目的新闻     
 要获取多个栏目的新闻,如何写呢?? 
 因为栏目很多,用where..and...方式写的太长了,有什么简短,高效的办法没?? 
 select   *   from   news   where   .......     
------解决方案--------------------select * from news where class=3 or class=4 or ......