sql 如何把字段中的时间数据按设定好的范围筛选到另一个表中?_百度知...
发布网友
发布时间:2024-10-21 23:31
我来回答
共2个回答
热心网友
时间:2024-11-20 04:04
另一个表数据库中有吗?如果有:已有表需要与原表的结构相同
insert [已有表] select * from [原表] where [时间]>='具体时间1' and [时间]<='具体时间2'
如果没有,就建一个表
select * into [新建表] from [原表] where [时间]>='具体时间1' and [时间]<='具体时间2'
热心网友
时间:2024-11-20 04:10
insert into b (time_t)
select time_t from a where a.time_t between 范围