2016-09-03 15 views
-1
1st table   2nd table 

---------------  ---------- 
|id|name|hours|  |id|phour| 
---------------  ---------- 
|1 |samp| 7 |  |1 | 10 | 
---------------  ---------- 
|2 |smp2| 1 | 

MySQLが参加する1つのテーブル/多くの行

------------------ 
|phour|name|hours| 
------------------ 
| 10 |samp| 7 | 
------------------ 
|  |smp2| 1 | 
+1

これは問題ではありません。 – Carpetsmoker

+0

2番目のテーブルに一致するものがない場合、結果に行を含めるにはLEFT OUTER JOINを使用します。 – Barmar

+0

http://stackoverflow.com/help/how-to-ask – Barmar

答えて

0

は、次のクエリを試してみてください出力ワット/ 1行とテーブルのw:

select phour, name, hours from table1 right join table2 on table1.id=table2.id 
+0

助けてくれてありがとう –

関連する問題