App下載

詞條

大約有 2,800 項(xiàng)符合查詢結(jié)果 ,庫(kù)內(nèi)數(shù)據(jù)總量為 78,353 項(xiàng)。(搜索耗時(shí):0.0078秒)

2051.Laravel 8 參數(shù)分組

...個(gè)實(shí)例來(lái)設(shè)置應(yīng)該包含的約束。上面的例子將生成以下 SQL 語(yǔ)句:select * from users where name = 'John' and (votes > 100 or title = 'Admin') 技巧:你在調(diào)用 orWhere 的時(shí)候,應(yīng)該始終使用分組,以避免應(yīng)用全局作用出現(xiàn)意外。

http://hgci.cn/laravel_8/laravel_8-eiua3hxx.html

2052.Laravel 8 Or 語(yǔ)句

...l') ->where('votes', '>', 50); }) ->get(); // SQL語(yǔ)句: select * from users where votes > 100 or (name = 'Abigail' and votes > 50)

http://hgci.cn/laravel_8/laravel_8-j8ki3hy8.html

2053.Laravel 8 JSON Where 語(yǔ)句

...在對(duì) JSON 類型支持的數(shù)據(jù)庫(kù)上)。目前,本特性僅支持 MySQL 5.7、PostgreSQL、SQL Server 2016 以及 SQLite 3.9.0 (with the JSON1 extension)。使用 -> 操作符查詢 JSON 數(shù)據(jù):$users = DB::table('users') ->where('options->language', 'en') -...

http://hgci.cn/laravel_8/laravel_8-z6kl3hyc.html

2054.Laravel 8 調(diào)試

...詢的時(shí)候,您可以使用 dd 或 dump 方法來(lái)輸出查詢綁定和 SQL。dd 方法將會(huì)顯示調(diào)試信息并終止執(zhí)行請(qǐng)求,而 dump 方法則會(huì)顯示調(diào)試信息并允許請(qǐng)求繼續(xù)執(zhí)行:DB::table('users')->where('votes', '>', 100)->dd(); DB::table...

http://hgci.cn/laravel_8/laravel_8-jnbo3hys.html

2055.Laravel 8 數(shù)據(jù)庫(kù)連接 & 數(shù)據(jù)表選項(xiàng)

...Description $table->engine = 'InnoDB'; 指定表存儲(chǔ)引擎 (MySQL)。 $table->charset = 'utf8mb4'; 指定數(shù)據(jù)表的默認(rèn)字符集 (MySQL)。 $table->collation = 'utf8mb4_unicode_ci'; 指定數(shù)據(jù)表默認(rèn)的排序規(guī)則 (MySQL)。 $table->temporary(); 創(chuàng)建...

http://hgci.cn/laravel_8/laravel_8-wjzp3hzm.html

2056.Laravel 8 字段修飾

...;after('column') 將此字段放置在其它字段 「之后」 (MySQL) ->autoIncrement() 將 INTEGER 類型的字段設(shè)置為自動(dòng)遞增的主鍵 ->charset('utf8mb4') 指定一個(gè)字符集 (MySQL) ->collation('utf8mb4_unicode_ci') 指定排序規(guī)則 (MySQL/PostgreS...

http://hgci.cn/laravel_8/laravel_8-67ne3hzs.html

2057.Laravel 8 先決條件

在修飾字段之前,請(qǐng)確保將 doctrine/dbal 依賴添加到 composer.json 文件中。Doctrine DBAL 庫(kù)用于確定字段的當(dāng)前狀態(tài), 并創(chuàng)建對(duì)該字段進(jìn)行指定調(diào)整所需的 SQL 查詢:composer require doctrine/dbal

http://hgci.cn/laravel_8/laravel_8-xu5t3hzu.html

2058.Laravel 8 updateOrCreate

...parture', 'destination'], ['price']);Copy 注意:除 SQL Server 之外的所有數(shù)據(jù)庫(kù)都要求 upsert 方法的第二個(gè)參數(shù)中的列具有 “primary” 或 “unique” 索引。

http://hgci.cn/laravel_8/laravel_8-jfl13i1l.html

2059.Laravel 8 應(yīng)用全局作用域

...eScope); } } 添加作用域后,對(duì) User::all() 的查詢會(huì)生成以下 SQL 查詢語(yǔ)句:select * from `users` where `age` > 200

http://hgci.cn/laravel_8/laravel_8-9ar63i4k.html

2060.Laravel 8 關(guān)聯(lián)方法 Vs 動(dòng)態(tài)屬性

...的關(guān)聯(lián)數(shù)據(jù)。預(yù)加載能大量減少因加載模型關(guān)聯(lián)執(zhí)行的 SQL 語(yǔ)句。

http://hgci.cn/laravel_8/laravel_8-z8v93i6n.html

抱歉,暫時(shí)沒(méi)有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒(méi)有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒(méi)有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

2051.Laravel 8 參數(shù)分組

...個(gè)實(shí)例來(lái)設(shè)置應(yīng)該包含的約束。上面的例子將生成以下 SQL 語(yǔ)句:select * from users where name = 'John' and (votes > 100 or title = 'Admin') 技巧:你在調(diào)用 orWhere 的時(shí)候,應(yīng)該始終使用分組,以避免應(yīng)用全局作用出現(xiàn)意外。

http://hgci.cn/laravel_8/laravel_8-eiua3hxx.html

2052.Laravel 8 Or 語(yǔ)句

...l') ->where('votes', '>', 50); }) ->get(); // SQL語(yǔ)句: select * from users where votes > 100 or (name = 'Abigail' and votes > 50)

http://hgci.cn/laravel_8/laravel_8-j8ki3hy8.html

2053.Laravel 8 JSON Where 語(yǔ)句

...在對(duì) JSON 類型支持的數(shù)據(jù)庫(kù)上)。目前,本特性僅支持 MySQL 5.7、PostgreSQL、SQL Server 2016 以及 SQLite 3.9.0 (with the JSON1 extension)。使用 -> 操作符查詢 JSON 數(shù)據(jù):$users = DB::table('users') ->where('options->language', 'en') -...

http://hgci.cn/laravel_8/laravel_8-z6kl3hyc.html

2054.Laravel 8 調(diào)試

...詢的時(shí)候,您可以使用 dd 或 dump 方法來(lái)輸出查詢綁定和 SQL。dd 方法將會(huì)顯示調(diào)試信息并終止執(zhí)行請(qǐng)求,而 dump 方法則會(huì)顯示調(diào)試信息并允許請(qǐng)求繼續(xù)執(zhí)行:DB::table('users')->where('votes', '>', 100)->dd(); DB::table...

http://hgci.cn/laravel_8/laravel_8-jnbo3hys.html

2055.Laravel 8 數(shù)據(jù)庫(kù)連接 & 數(shù)據(jù)表選項(xiàng)

...Description $table->engine = 'InnoDB'; 指定表存儲(chǔ)引擎 (MySQL)。 $table->charset = 'utf8mb4'; 指定數(shù)據(jù)表的默認(rèn)字符集 (MySQL)。 $table->collation = 'utf8mb4_unicode_ci'; 指定數(shù)據(jù)表默認(rèn)的排序規(guī)則 (MySQL)。 $table->temporary(); 創(chuàng)建...

http://hgci.cn/laravel_8/laravel_8-wjzp3hzm.html

2056.Laravel 8 字段修飾

...;after('column') 將此字段放置在其它字段 「之后」 (MySQL) ->autoIncrement() 將 INTEGER 類型的字段設(shè)置為自動(dòng)遞增的主鍵 ->charset('utf8mb4') 指定一個(gè)字符集 (MySQL) ->collation('utf8mb4_unicode_ci') 指定排序規(guī)則 (MySQL/PostgreS...

http://hgci.cn/laravel_8/laravel_8-67ne3hzs.html

2057.Laravel 8 先決條件

在修飾字段之前,請(qǐng)確保將 doctrine/dbal 依賴添加到 composer.json 文件中。Doctrine DBAL 庫(kù)用于確定字段的當(dāng)前狀態(tài), 并創(chuàng)建對(duì)該字段進(jìn)行指定調(diào)整所需的 SQL 查詢:composer require doctrine/dbal

http://hgci.cn/laravel_8/laravel_8-xu5t3hzu.html

2058.Laravel 8 updateOrCreate

...parture', 'destination'], ['price']);Copy 注意:除 SQL Server 之外的所有數(shù)據(jù)庫(kù)都要求 upsert 方法的第二個(gè)參數(shù)中的列具有 “primary” 或 “unique” 索引。

http://hgci.cn/laravel_8/laravel_8-jfl13i1l.html

2059.Laravel 8 應(yīng)用全局作用域

...eScope); } } 添加作用域后,對(duì) User::all() 的查詢會(huì)生成以下 SQL 查詢語(yǔ)句:select * from `users` where `age` > 200

http://hgci.cn/laravel_8/laravel_8-9ar63i4k.html

2060.Laravel 8 關(guān)聯(lián)方法 Vs 動(dòng)態(tài)屬性

...的關(guān)聯(lián)數(shù)據(jù)。預(yù)加載能大量減少因加載模型關(guān)聯(lián)執(zhí)行的 SQL 語(yǔ)句。

http://hgci.cn/laravel_8/laravel_8-z8v93i6n.html

抱歉,暫時(shí)沒(méi)有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程