然后代码为:insert into 表C select a.id as id1,b.id as id2 from 表A a,表B b where a.time = b.time这样就可以了。。
select * from table1 where ('2007-2' >字段1 and '2007-2' <字段2)or
('2007-5' >字段1 and '2007-5' <字段2)
你是要查前十个查询结果中相同的那些记录,而不求前十个相同记录吧,因为这是有差别的,按照你的语句,应该是求前者,即先求出A的前十条数据,B的前十条数据,再求它们的交集。既然是求交集,那么这两个表的关系模式应该是相同的了,
select
a.*
from
(select
*
from
table
order
by
table.a
desc
limit
10)
as
a,
(select
*
from
table
order
by
table.b
desc
limit
10)
as
b
where
a.primary_key
=
b.primary_key
--先将两个结果作为两张临时表,然后通过主键
primary_key来获取交集(交集肯定就是主键相等的了,因为关系模式相同)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)