在mysql中连接两个具有相似列的表

时间:2013-10-17 09:37:11

标签: mysql sql join jointable

我有一个关于在mysql中连接两个表的问题。

我有这个数据模型:

timeline:
structure: i.imgur.com/THmV5hp.jpg
data: i.imgur.com/YaabHtf.jpg

timeline_personal:
structure: i.imgur.com/H0VzTMw.jpg
data: i.imgur.com/rX3NhOb.jpg

我想在不同的行中加入2个表。我尝试左,内,右连接但不可能。结果以类似的行检索我。我喜欢this链接中显示的结果:

这是一个棘手的问题:P

1 个答案:

答案 0 :(得分:0)

您可以使用以下查询获得所需的结果:

  select 
      concat('T-',timeline.TimelineId), timeline.UsuarioId, timeline.TimelineFecha, "" Timeline, timeline.Evento, timeline.JuegoId, 0 TimelinePadre 
  from 
      timeline 
  union 
  select 
     concat('TP-',timeline_personal.TimelineId), timeline_personal.UsuarioId, timeline_personal.TimelineFecha, timeline_personal.Timeline, "0" Evento, "0" JuegoId, timeline_personal.TimelinePadre 
  from 
     timeline_personal 
  order by UsuarioId