Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のケースを持っています:
2 つのテーブルの構造は次のようになります。
[マシン] (親テーブル):
machine_id (PK) | machine_name | desc
[machine_in_out] (子テーブル):
id (PK) | machine_in_id | machine_out_id
machine_in_idここで、machine_out_id親テーブルからの名前を取得したいと考えています。
machine_in_id
machine_out_id
これを参加させる方法は?
これを試して...
Select mio.ID, m1.machine_name, m2.machine_name From [machine_in_out] mio Join [machine] m1 On mio.machine_in_ID = m1.machineID Join [machine] m2 On mio.machine_out_ID = m2.machineID