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.
以下の 3 つのテーブルから出力を取得しようとしています。
日付ごとの履歴から、顧客情報とその最新アイテムを含むドメインの出力が必要です。
私はCodeIgniterを使用しています:
$this->db->select( ->from() ->where() ->join()
必要なクエリは次のようなものです。
SELECT * FROM domains d LEFT JOIN customers c ON d.Customer = c.id LEFT JOIN history h ON h.domain_id = d.id ORDER BY h.date desc
これを自分で Code Igniter に入れる必要があります - 私はいくつかのフィールド名を推測しました。