私は以下の画像を2つ持っています。他のテーブルを設定するにはMYSQLのon IDで注文する
tb_user
tb_user_connection
select * from tb_user_connection WHERE connection_type='a'
AND user_id = '1' AND user_id <= connection_id
union all
select *
from tb_user_connection t
where user_id > connection_id
and connection_type='a' and not exists (
select 1
from tb_user_connection t1
where t1.user_id = t.connection_id
and t1.connection_id = t.user_id
)
ですからtb_user_connectionからレコードを取得したいのですが、 tb_user.first_nameで注文します。どのようにこのクエリを設定できますか?
'connection_type'フィールドが画面キャプチャに表示されず、ロジックが明確ではありません。 –
はい@TimBiegeleisen私は今それを取る – ImBS