Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この2つのテーブルを1つのテーブルに連結したいと思います。ドロップダウンで年と月。のようですか
year-month 0-1 1-2 1-3
mysqlクエリでそれを行うことは可能ですか?
SELECT CONCAT( a.year, '-', b.month ) AS year_month FROM year_table a, month_table b;
こんな感じですか?
select concat(a.yearNo,'-',b.monthNo) as yearMonth from table1 a, table2 b where a.someID=b.someID