sql 语句查询数据后,根据字段内容合并到1行显示如何做到?

2025-01-19 16:34:32
推荐回答(2个)
回答1:

用外连接就行了啊

SELECT t1.uuid, t1.id, t1.username, t2.type, t2. status
  from t1 left join t2 on t1.uuid = t2.t1_uuid and t1.type <> t2.type

回答2:

你是oracle,还是mysql啊