现在有两张表
一张用于存储时间片段的duration表
CREATE TABLE `duration` ( `id` int(0) NOT NULL, `start_time` datetime(0) NULL, `end_time` datetime(0) NULL, );
一张用于存储数据的data表,有数据的插入时间
CREATE TABLE `data` ( `id` int(0) NOT NULL, `record_time` datetime(0) NULL, );
这俩表id都是可以重复的
现在从duration表中查出多条数据,也就是获取到了多个时间片段,然后再data表中查出对应record_time在之前查出的多个时间片段之间的数据。
大佬们这个咋弄?
慕神8447489
相关分类