SELECT DISTINCT
	a.fullname,
	a.belong_user_id AS belong_id,
	a.store_type
FROM
	c_store_tbl a
JOIN c_store_tbl b ON a.store_type != b.store_type
WHERE
	a.belong_user_id = b.belong_user_id
ORDER BY
	a.belong_user_id,
	a.store_type

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-18
  • 2022-01-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-14
  • 2021-11-15
  • 2022-12-23
  • 2022-01-14
  • 2022-12-23
  • 2021-10-21
相关资源
相似解决方案