
怎么只用SQL语句,建立这个表格,然后增加这两项纪录呢?
------解决方案--------------------
if object_id('tb') is not null
drop table tb
go
create table tb
(
.. varchar(50),
... datetime,
...
)
insert into tb select ......
union all
select ...------解决方案--------------------
convert(varchar(10),'2008/2/25 00:00:00',120)