使用两个表之间的连接时重复列

时间:2016-06-02 09:36:13

标签: sql postgresql join duplicates rows

根据在8或9表格中的postgres中使用select查询,使用join found output as

 1. A    2   34
 2. A    2   56
 3. B    3   34
 4. B    3   56

而我需要两种形式的输出

 1. A    2   34
 2. A    2   34
 3. B    3   56
 4. B    3   56

    A    2   34
    B    3  56

我能做什么?

1 个答案:

答案 0 :(得分:0)

使用distinct?

select distinct * from table