0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【メモ】FuelPHPでクエリビルダを使って、DBからデータ取得

Posted at

ちょろっとFuelPHPを触らないといけない機会があったのでメモ。
本当にちょっと触っただけなので汚いかもしれないけど、一応これで取得できる。

   $response = \DB::select('*')->from('user')
    ->where_open()
    ->where('id', '=', 1)
    ->and_where('shop_id', '!=', 123)
    ->and_where('status', 0)
    ->where_close()
    ->execute()->as_array();
メモ
  • select('*')はSELECT文。*で全カラム取得できる。
    カラム指定したい場合は、select('カラム名1', 'カラム名2')のようにする。
  • from('user')はDBのテーブル指定。
  • where_open()where_close()の間にwhere文を書く。
  • where()は基本1回だけっぽい。
  • whereの真ん中の=は省略可能。 『=』『!=』『>』『<』などは普通に使える。
  • as_array()を最後に入れると配列で結果が返ってくるので便利。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?