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.
Kohana 3.2 のクエリ ビルダーを使用して、この「REPLACE INTO テーブル ...」のようなコードを取得するにはどうすればよいですか。それは実装されていますか、それとも自分で実装する必要があります。
ありがとう
REPLACE INTO標準の SQL クエリではないため、QBuilder には機能がありません。DB::query()メソッドでクエリを作成できます:
REPLACE INTO
DB::query()
DB::query(NULL, 'replace into ...');