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.
データベースに4つのテーブルがあり、PHPMYSQLで単一の検索パラメーターを使用して4つのテーブルを検索し、結果を単一のページに表示するにはどうすればよいですか?たくさんの友達に感謝します。
Select * From table1 inner join table2 on table1.col=table2.col inner join table3 on table#.col=table3.col .......... where Col=?
?=? で置き換えることができます。両方のテーブルの列名が同じ場合は、"using (column)" を使用します。