发布网友 发布时间:2022-04-26 14:30
共5个回答
懂视网 时间:2022-04-30 00:29
如上图:t1,t2代表要选择的时间段,t3,t4代表系统时间。
那么如果要获取选中时间段所有的交集为:
条件1 and ((t3>t1 and t1>t2) or (t3<t2 and t2<t4) or (t3<t2 and t1<t4))....条件3...
PS:条件1,条件3代表其他条件,选中时间的交集的意思是只要选择的时间段跟系统字段本身时间区间有交集都符合条件。
SQL获取选中时间的交集
标签:
热心网友 时间:2022-04-29 21:37
select distinct id from a where id='123' and id in (select distinct id from a where id='456')
不过偶实在没看出select distinct id from a where id='123'这种语句有什么用处。。。。 就你写的来说这二者不可能有什么交集。
如果你的意思是指并集,就应该用select distinct id from a where id='456' or id = '123'追问这样可以
我还想问一下 如果这个id是个参数 有多个这样的id 不是2个 该怎么写呢
热心网友 时间:2022-04-29 22:55
select distinct id from a where id='456' and id = '123'
热心网友 时间:2022-04-30 00:29
此结果无交集·
热心网友 时间:2022-04-30 02:21
我想通过查询与当前新闻具有关键字交集不为空的新闻来实现,可又不知道这.,至于这个怎么组合这个sql,这个我想你应该知道的吧,不知道我有没有理解