質問編集履歴

1

解説追加

2020/02/14 07:49

投稿

larachan
larachan

スコア28

test CHANGED
File without changes
test CHANGED
@@ -19,3 +19,25 @@
19
19
 
20
20
 
21
21
  以上、宜しくお願い致します。
22
+
23
+
24
+
25
+ 仮で簡単なJoin載せときます。
26
+
27
+ ```ここに言語を入力
28
+
29
+ DB::table($this->table)
30
+
31
+ ->join('AAA', 'BBB.int_id', '=', 'AAA.int_id')
32
+
33
+ ->select('BBB.int_t_id', 'BBB.int_m_id', 'BBB.int_type', 'AAA.string_name')
34
+
35
+ ->where('BBB.int_id', '=', $int_id)
36
+
37
+ ->orderBy('BBB.int_t_id', 'asc')
38
+
39
+ ->orderBy('BBB.int_m_id', 'asc')
40
+
41
+ ->paginate($page_count);
42
+
43
+ ```