0

この2つのテーブルを1つのテーブルに連結したいと思います。ドロップダウンで年と月。のようですか

year-month
0-1
1-2
1-3

mysqlクエリでそれを行うことは可能ですか?

4

2 に答える 2

2
SELECT
  CONCAT( a.year, '-', b.month ) AS year_month
FROM
  year_table a,
  month_table b;
于 2012-08-06T10:18:52.217 に答える
0

こんな感じですか?

select concat(a.yearNo,'-',b.monthNo) as yearMonth from table1 a, table2 b where a.someID=b.someID
于 2012-08-06T10:15:37.787 に答える