这样的SELECT查询语句怎么写?,
现在有一张新闻(news)表(access);表内字段:id(自动编号) title(新闻标题) type(单位) content(新闻内容) times(时间 date()默认)
我怎么能用SELECT语句调出news表中某一个单位,本周发表的新闻数量?
sql="select count(*) from news where type='银行' and **************(后面怎么写?) order by id desc"