検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 125 for age (0.006 sec.)
コレクションを削除する 8096
« Collection::modify Collection::removeOne » 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 (); // 全ての ... ction -> remove ( "job in ('Butler')" ) -> sort ( 'age desc' ) -> limit ( 1 ) -> execute (); // age が一番 ...
https://man.plustar.jp/php/mysql-xdevapi-collection.remove.html - [similar]
プレースホルダーに値をバインドする 7912
« mysql_xdevapi\CollectionRemove CollectionRemove::__construct » PHP Manual mysql_xdevapi\Collec ... emove::bind() の例 <?php $res = $coll -> remove ( 'age > :age_from and age < :age_to' )-> bind ([ 'age_fr ... om' => 20 , 'age_to' => 50 ])-> limit ( 7 )-> execute (); ?> 関連キ ...
https://man.plustar.jp/php/mysql-xdevapi-collectionremove.bind.html - [similar]
RowResult のコンストラクタ 7912
« mysql_xdevapi\RowResult RowResult::fetchAll » PHP Manual mysql_xdevapi\RowResult RowResult のコ ... e ( "names" ); $row = $table -> select ( 'name' , 'age' )-> where ( 'age > 18' )-> execute ()-> fetchAll ... になります。 Array ( [0] => Array ( [name] => John [age] => 42 ) [1] => Array ( [name] => Sam [age] => 33 ... ーワード: RowResult , construct , xdevapi , Array , age , パラメータ , 問い合わせ , John , 出力 , 関数 ...
https://man.plustar.jp/php/mysql-xdevapi-rowresult.construct.html - [similar]
要素をスキップする 7863
« CollectionModify::set CollectionModify::sort » PHP Manual mysql_xdevapi\CollectionModify 要素を ... ectionModify::skip() の例 <?php $coll -> modify ( 'age > :age' )-> sort ( 'age desc' )-> unset ([ 'age' ] ... )-> bind ([ 'age' => 20 ])-> limit ( 4 )-> skip ( 1 )-> execute (); ...
https://man.plustar.jp/php/mysql-xdevapi-collectionmodify.skip.html - [similar]
結果を限定する 7863
« mysql_xdevapi\CrudOperationLimitable mysql_xdevapi\CrudOperationSkippable » PHP Manual mysql_x ... $res = $coll -> find ()-> fields ([ 'name as n' , 'age as a' , 'job as j' ])-> groupBy ( 'j' )-> limit ( ... -> execute (); $res = $table -> update ()-> set ( 'age' , 69 )-> where ( 'age > 15 and age < 22' )-> limi ... t ( 4 )-> orderby ([ 'age asc' , 'name desc' ])-> execute (); ?> 関連キーワー ...
https://man.plustar.jp/php/mysql-xdevapi-crudoperationlimitable.limit.html - [similar]
select 文の検索条件を設定する 7740
« TableSelect::orderby mysql_xdevapi\TableUpdate » PHP Manual mysql_xdevapi\TableSelect select 文 ... "names" ); $result = $table -> select ( 'name' , 'age' ) -> where ( 'name like :name and age > :age' ) - ... > bind ([ 'name' => 'John' , 'age' => 42 ]) -> execute (); $row = $result -> fetchAl ... になります。 Array ( [0] => Array ( [name] => John [age] => 42 ) ) 関連キーワード: 検索 , 条件 , 設定 , Ta ...
https://man.plustar.jp/php/mysql-xdevapi-tableselect.where.html - [similar]
コードポイントの "age" を取得する 7678
« IntlChar IntlChar::charDigitValue » PHP Manual IntlChar コードポイントの "age" を取得する Intl ... Char::charAge (PHP 7, PHP 8) IntlChar::charAge — コードポイントの ... "age" を取得する 説明 public static IntlChar::charAge ( ... t | string $codepoint ): ? array コードポイントの "age" を取得します。 "age" とは、(内部的な用途や、文字で ... コードポイントの例 <?php var_dump ( IntlChar :: charage ( "\u{2603}" )); var_dump ( IntlChar :: charage ( ...
https://man.plustar.jp/php/intlchar.charage.html - [similar]
直近の操作から発生した警告を取得する 7678
« DocResult::fetchOne DocResult::getWarningsCount » PHP Manual mysql_xdevapi\DocResult 直近の操作 ... ブジェクトの配列。 個々のオブジェクトはエラーの 'message' と 'level' と 'code' を定義しています。 エラーが発 ... "people" ); $create -> add ( '{"name": "Alfred", "age": 18, "job": "Butler"}' )-> execute (); $create -> ... add ( '{"name": "Reginald", "age": 42, "job": "Butler"}' )-> execute (); // ... $co ... $result = $collection -> find ( 'job like :job and age > :age' ) -> bind ([ 'job' => 'Butler' , 'age' => ...
https://man.plustar.jp/php/mysql-xdevapi-docresult.getwarnings.html - [similar]
select のクエリパラメータをバインドする 7678
« mysql_xdevapi\TableSelect TableSelect::__construct » PHP Manual mysql_xdevapi\TableSelect sele ... "names" ); $result = $table -> select ( 'name' , 'age' ) -> where ( 'name like :name and age > :age' ) - ... > bind ([ 'name' => 'John' , 'age' => 42 ]) -> execute (); $row = $result -> fetchAl ... になります。 Array ( [0] => Array ( [name] => John [age] => 42 ) ) 関連キーワード: TableSelect , クエリパラ ...
https://man.plustar.jp/php/mysql-xdevapi-tableselect.bind.html - [similar]
スキーマのテーブルを取得する 7629
« Schema::getSession Schema::getTables » PHP Manual mysql_xdevapi\Schema スキーマのテーブルを取得 ... > 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 ... キーマ , 取得 , xdevapi , getTable , Array , Table , age , オブジェクト , string ...
https://man.plustar.jp/php/mysql-xdevapi-schema.gettable.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT