検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 125 for age (0.080 sec.)
CollectionFind のコンストラクタ 7568
« CollectionFind::bind CollectionFind::execute » PHP Manual mysql_xdevapi\CollectionFind Collect ... ); $result = $create -> add ( '{"name": "Alfred", "age": 18, "job": "Butler"}' ) -> execute (); // ... $c ... $result = $collection -> find ( 'job like :job and age > :age' ) -> bind ([ 'job' => 'Butler' , 'age' => ... id"]=> string(28) "00005b6b536100000000000000cf" ["age"]=> int(18) ["job"]=> string(6) "Butler" ["name"]= ...
https://man.plustar.jp/php/mysql-xdevapi-collectionfind.construct.html - [similar]
CollectionRemove のコンストラクタ 7568
« CollectionRemove::bind CollectionRemove::execute » PHP Manual mysql_xdevapi\CollectionRemove C ... ople" ); $collection -> add ( '{"name": "Alfred", "age": 18, "job": "Butler"}' )-> execute (); $collectio ... n -> add ( '{"name": "Bob", "age": 19, "job": "Painter"}' )-> execute (); // すべて ... ction -> remove ( "job in ('Butler')" ) -> sort ( 'age desc' ) -> limit ( 1 ) -> execute (); // age が一番 ... 削除する $collection -> remove ( 'true' ) -> sort ( 'age desc' ) -> limit ( 1 ) -> execute (); ?> 関連キーワ ...
https://man.plustar.jp/php/mysql-xdevapi-collectionremove.construct.html - [similar]
コレクションのドキュメントを変更する 7506
« Collection::getSession Collection::remove » PHP Manual mysql_xdevapi\Collection コレクションの ... 使うこともできます。 'CAST(_id AS SIGNED) >= 10' , 'age MOD 2 = 0 OR age MOD 3 = 0' , '_id IN ["2","5","7" ... ople" ); $collection -> add ( '{"name": "Alfred", "age": 18, "job": "Butler"}' )-> execute (); $collectio ... n -> add ( '{"name": "Bob", "age": 19, "job": "Painter"}' )-> execute (); // 全ての ... rrayAppend ( 'job' , 'Crafter' ) -> execute (); // age が 21 の全てのドキュメントから、'beer' フィールドを ...
https://man.plustar.jp/php/mysql-xdevapi-collection.modify.html - [similar]
結果セットから全ての行を取得する 7506
« RowResult::__construct RowResult::fetchOne » PHP Manual mysql_xdevapi\RowResult 結果セットから ... > sql ( "CREATE TABLE addressbook.names(name text, age int)" )-> execute (); $session -> sql ( "INSERT IN ... e ( "names" ); $row = $table -> select ( 'name' , 'age' )-> execute ()-> fetchAll (); print_r ( $row ); 上 ... になります。 Array ( [0] => Array ( [name] => John [age] => 42 ) [1] => Array ( [name] => Sam [age] => 33 ... , fetchAll , Array , xdevapi , パラメータ , 配列 , age ...
https://man.plustar.jp/php/mysql-xdevapi-rowresult.fetchall.html - [similar]
select 句の having 条件を設定する 7506
« TableSelect::groupBy TableSelect::limit » PHP Manual mysql_xdevapi\TableSelect select 句の hav ... > sql ( "CREATE TABLE addressbook.names(name text, age int)" )-> execute (); $session -> sql ( "INSERT IN ... result = $table -> select ( 'count(*) as count' , 'age' ) -> groupBy ( 'age' )-> orderBy ( 'age asc' ) -> ... うになります。 Array ( [0] => Array ( [count] => 2 [age] => 42 ) ) 関連キーワード: having , 条件 , TableSe ...
https://man.plustar.jp/php/mysql-xdevapi-tableselect.having.html - [similar]
ステートメントを実行する 7445
« CollectionFind::__construct CollectionFind::fields » PHP Manual mysql_xdevapi\CollectionFind ス ... "people" ); $create -> add ( '{"name": "Alfred", "age": 18, "job": "Butler"}' ) -> execute (); // ... $c ... $result = $collection -> find ( 'job like :job and age > :age' ) -> bind ([ 'job' => 'Butler' , 'age' => ... id"]=> string(28) "00005b6b536100000000000000cf" ["age"]=> int(18) ["job"]=> string(6) "Butler" ["name"]= ...
https://man.plustar.jp/php/mysql-xdevapi-collectionfind.execute.html - [similar]
テーブルから行を選択する 7445
« Table::isView Table::update » PHP Manual mysql_xdevapi\Table テーブルから行を選択する Table::s ... > sql ( "CREATE TABLE addressbook.names(name text, age int)" )-> execute (); $session -> sql ( "INSERT IN ... e ( "names" ); $row = $table -> select ( 'name' , 'age' )-> execute ()-> fetchAll (); print_r ( $row ); 上 ... になります。 Array ( [0] => Array ( [name] => John [age] => 42 ) [1] => Array ( [name] => Sam [age] => 33 ... , 選択 , Table , 行 , columns , xdevapi , Array , age , オブジェクト , カラム ...
https://man.plustar.jp/php/mysql-xdevapi-table.select.html - [similar]
集約関数の条件を設定する 7162
« CollectionFind::groupBy CollectionFind::limit » PHP Manual mysql_xdevapi\CollectionFind 集約関 ... oll は、有効な Collection オブジェクトとします // 'age' が40以上の全てのドキュメントを検索し、 // カラム ... 'name' と 'age' のみを Result オブジェクトとして返します。 $res = ... $coll -> find ()-> fields ([ 'name' , 'age' ])-> having ( 'age > 40' )-> execute (); ?> 関連キ ...
https://man.plustar.jp/php/mysql-xdevapi-collectionfind.having.html - [similar]
ソート条件を設定する 7162
« CollectionFind::offset mysql_xdevapi\CollectionModify » PHP Manual mysql_xdevapi\CollectionFin ... "people" ); $create -> add ( '{"name": "Alfred", "age": 18, "job": "Butler"}' ) -> execute (); $create - ... > add ( '{"name": "Reginald", "age": 42, "job": "Butler"}' ) -> execute (); // ... $c ... t = $collection -> find () -> sort ( 'job desc' , 'age asc' ) -> execute (); var_dump ( $result -> fetchA ... id"]=> string(28) "00005b6b53610000000000000106" ["age"]=> int(18) ["job"]=> string(6) "Butler" ["name"]= ...
https://man.plustar.jp/php/mysql-xdevapi-collectionfind.sort.html - [similar]
クエリのプレースホルダーに値をバインドする 6978
« mysql_xdevapi\CollectionFind CollectionFind::__construct » PHP Manual mysql_xdevapi\Collection ... ); $result = $create -> add ( '{"name": "Alfred", "age": 18, "job": "Butler"}' ) -> execute (); // ... $c ... $result = $collection -> find ( 'job like :job and age > :age' ) -> bind ([ 'job' => 'Butler' , 'age' => ... id"]=> string(28) "00005b6b536100000000000000cf" ["age"]=> int(18) ["job"]=> string(6) "Butler" ["name"]= ...
https://man.plustar.jp/php/mysql-xdevapi-collectionfind.bind.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT