我有两张表,一张名为logs
另一张名为location
.
在logs
中,我有以下内容:
___________________________
| id | message | location |
'-------------------------'
| 1 | test | 1 |
| 2 | test | 2 |
| 3 | test | 1 |
| 4 | test | 1 |
___________________________
在location
表中,我有这个:
_________________
| id | location |
'---------------'
| 1 | US |
| 2 | UK |
_________________
我想用我的查询输出的是:
___________________________
| id | message | location |
'-------------------------'
| 1 | test | US |
| 2 | test | UK |
| 3 | test | US |
| 4 | test | US |
___________________________
我怎么做?