日期:2014-05-18 浏览次数:20557 次
create table tb(dt datetime) insert into tb select '2001-12-12 00:11:25.012' insert into tb select '2001-12-12 00:11:25.013' insert into tb select '2001-12-12 00:11:25.014' insert into tb select '2001-12-12 00:11:25.015' insert into tb select '2001-12-12 00:11:25.016' insert into tb select '2001-12-12 00:11:25.017' insert into tb select '2001-12-12 00:11:25.018' go select * from tb /* dt ----------------------- 2001-12-12 00:11:25.013 2001-12-12 00:11:25.013 2001-12-12 00:11:25.013 2001-12-12 00:11:25.017 2001-12-12 00:11:25.017 2001-12-12 00:11:25.017 2001-12-12 00:11:25.017 (7 行受影响) */ go drop table tb