Get rid from one column duplicate values in two column select

前端 未结 3 620
隐瞒了意图╮
隐瞒了意图╮ 2020-12-21 21:50

So, I`ve got two columns t1.NAME and t2.ITEMS, for each neme there can be more than one item assigned to it, so I want to select it like:

| NAME | ITEMS |
           


        
3条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-21 22:06

    Result of my below query is very close to what you want.. the only difference is, there is no blank name, because you cannot directly do that result in one step query.. each item belong to name of each id in t1. BUT you can do some trick there if you want to get the exact result, you can use UPDATE to do some trick with the result.

        SELECT t1.NAME, t2.ITEMS
        FROM t1 INNER JOIN t2 ON t1.id = t2.names_id
    

提交回复
热议问题