create table test
{
   name varchar(20),
   regdate datetime
};/* 省略以前的信息 */
insert into test values( 'abc', now() );
    请问我如何查询当天的信息?