如果给定列(year_id)没有值(null),我如何合并 ONE 列中的两列
表格1
id txt year_id date
----------------------------------
1 text1 1
2 text2 2
3 text3 3
4 text4 2013-01-02
5 text5 2013-01-03
表 2
id year
----------------
1 2009
2 2010
3 2011
4 2012
我需要这样的结果
id txt merge_column
-------------------------
1 text1 2009
2 text2 2010
3 text3 2011
4 text4 2013-01-02
5 text5 2013-01-03
提前谢谢你,这个查询让我的想法复杂化..谢谢