爱因思坦说……
    呵呵,开个玩笑,其实我是想问大家一个关于时间问题,不要骂我!
    我有一张新闻列表(News),表结构如下:
    ID,Title,Description,AddedDate
    分别表示,编号,标题,正文,添加日期
    字段类型:Int,varchar(50),Text,DateTime
    Insert语句如下:
    insert into News(Title,Description,AddedDate)
    values(@Title,@Description,GetDate())
    现在我想Select出当日的新闻列表
    select * from News where AddedDate=GetDate()
    问题出来了,GetDate()的返回精确到分秒,这个要怎么写才能列表当日的新闻!谢谢