CollectionRemove::__construct

CollectionRemove のコンストラクタ

説明

private mysql_xdevapi\CollectionRemove::__construct()

コレクションのドキュメントを削除します。 mysql_xdevapi\Collection::remove によってインスタンス化されます。

パラメータ

この関数にはパラメータはありません。

例1 mysql_xdevapi\Collection::remove の例

<?php
$session 
mysql_xdevapi\getSession("mysqlx://user:password@localhost");

$session->sql("DROP DATABASE IF EXISTS addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();

$schema     $session->getSchema("addressbook");
$collection $schema->createCollection("people");

$collection->add('{"name": "Alfred", "age": 18, "job": "Butler"}')->execute();
$collection->add('{"name": "Bob",    "age": 19, "job": "Painter"}')->execute();

// すべての Painter を削除する
$collection
  
->remove("job in ('Painter')")
  ->
execute();

// もっとも古い Butler を削除する
$collection
  
->remove("job in ('Butler')")
  ->
sort('age desc')
  ->
limit(1)
  ->
execute();

// age が一番若いレコードを削除する
$collection
  
->remove('true')
  ->
sort('age desc')
  ->
limit(1)
  ->
execute();
?>