私がやりたいのは、ゲームアプリケーションの場合、ノンプレイヤーキャラクターを検索する必要があり、彼らには、追跡しているもののIDを格納するtarget_idというフィールドがあります。
given:
table mobs with fields and some example data
id x y target_id
1 1 1 2
2 3 3 1
クエリで次のデータを返したい
id x y target_id target_x target_y
1 1 1 2 3 3
2 3 3 1 1 1
これは私が試したものですが、構文エラーがあります
SELECT id,x,y,target_id, target.x, target.y FROM mobs LEFT JOIN mobs AS target ON target_id=id FROM mobs WHERE 1