Laravel框架数据库CURD操作、连贯操作总结,laravelcurd
Laravel框架数据库CURD操作、连贯操作总结,laravelcurd
一、Selects
检索表中的所有行
复制代码 代码如下:
$users = DB::table('users')->get();
foreach ($users as $user)
{
var_dump($user->name);
}
从表检索单个行
复制代码 代码如下:
$user = DB::table('users')->where('name', 'John')->first();
var_dump($user->name);
检索单个列的行
复制代码 代码如下:
$name = DB::table('users')->where('name', 'John')->pluck('name');
检索一个列值列表
复制代码 代码如下:
$roles = DB::table('roles')->lists('title');
该方法将返回一个数组标题的作用。你也可以指定一个自定义的键列返回的数组
复制代码 代码如下:
$roles = DB::table('roles')->lists('title', 'name');
指定一个Select子句
复制代码 代码如下:
$users = DB::table('users')->select('name', 'email')->get();
$users = DB::table('users')->distinct()->get();
$users = DB::table('users')->select('name as user_name')->get();
Select子句添加到一个现有的查询$query = DB::table('users')->select('name');
复制代码 代码如下:
$users = $query->addSelect('age')->get();
where
复制代码 代码如下:
$users = DB::table('users')->where('votes', '>', 100)->get();
OR
复制代码 代码如下:
$users = DB::table('users')->where('votes', '>', 100)->orWhere('name', 'John')->get();
Where Between
复制代码 代码如下:
$users = DB::table('users')->whereBetween('votes', array(1, 100))->get();
Where Not Between
复制代码 代码如下:
$users = DB::table('users')->whereNotBetween('votes', array(1, 100))->get();
Where In With An Array
复制代码 代码如下:
$users = DB::table('users')->whereIn('id', array(1, 2, 3))->get();
$users = DB::table('users')->whereNotIn('id', array(1, 2, 3))->get();
Using Where Null To Find Records With Unset Values
复制代码 代码如下:
$users = DB::table('users')->whereNull('updated_at')->get();
Order By, Group By, And Having
复制代码 代码如下:
$users = DB::table('users')->orderBy('name', 'desc')->groupBy('count')->having('count', '>', 100)->get();
Offset & Limit
复制代码 代码如下:
$users = DB::table('users')->skip(10)->take(5)->get();
二、连接
Joins
查询构建器也可以用来编写连接语句。看看下面的例子:
Basic Join Statement
复制代码 代码如下:
DB::table('users')
->join('contacts', 'users.id', '=', 'contacts.user_id')
->join('orders', 'users.id', '=', 'orders.user_id')
->select('users.id', 'contacts.phone', 'orders.price')
->get();
左连接语句
复制代码 代码如下:
DB::table('users')
->leftJoin('posts', 'users.id', '=', 'posts.user_id')
->get();
DB::table('users')
->join('contacts', function($join)
{
$join->on('users.id', '=', 'contacts.user_id')->orOn(...);
})
->get();
DB::table('users')
->join('contacts', function($join)
{
$join->on('users.id', '=', 'contacts.user_id')
->where('contacts.user_id', '>', 5);
})
->get();
三、分组
有时候,您可能需要创建更高级的where子句,如“存在”或嵌套参数分组。Laravel query builder可以处理这些:
复制代码 代码如下:
DB::table('users')
->where('name', '=', 'John')
->orWhere(function($query)
{
$query->where('votes', '>', 100)
->where('title', '', 'Admin');
})
->get();
上面的查询将产生以下SQL:
复制代码 代码如下:
select * from users where name = 'John' or (votes > 100 and title
'Admin')
Exists Statements
DB::table('users')
->whereExists(function($query)
{
$query->select(DB::raw(1))
->from('orders')
->whereRaw('orders.user_id = users.id');
})
->get();
上面的查询将产生以下SQL:
复制代码 代码如下:
select * from userswhere exists (
select 1 from orders where orders.user_id = users.id
)
四、聚合
查询构建器还提供了各种聚合方法,如统计,马克斯,min,avg和总和。
Using Aggregate Methods
复制代码 代码如下:
$users = DB::table('users')->count();
$price = DB::table('orders')->max('price');
$price = DB::table('orders')->min('price');
$price = DB::table('orders')->avg('price');
$total = DB::table('users')->sum('votes');
Raw Expressions
有时您可能需要使用一个原始表达式的查询。这些表达式将注入的查询字符串,所以小心不要创建任何SQL注入点!创建一个原始表达式,可以使用DB:rawmethod:
Using A Raw Expression
复制代码 代码如下:
$users = DB::table('users')
->select(DB::raw('count(*) as user_count, status'))
->where('status', '', 1)
->groupBy('status')
->get();
递增或递减一个列的值
复制代码 代码如下:
DB::table('users')->increment('votes');
DB::table('users')->increment('votes', 5);
DB::table('users')->decrement('votes');
DB::table('users')->decrement('votes', 5);
您还可以指定额外的列更新:
复制代码 代码如下:
DB::table('users')->increment('votes', 1, array('name' => 'John'));
Inserts
将记录插入表
复制代码 代码如下:
DB::table('users')->insert(
array('email' => 'john@example.com', 'votes' => 0)
);
将记录插入表自动增加的ID
如果表,有一个自动递增的id字段使用insertGetId插入一个记录和检索id:
复制代码 代码如下:
$id = DB::table('users')->insertGetId(
array('email' => 'john@example.com', 'votes' => 0)
);
注意:当使用PostgreSQL insertGetId方法预计,自增列被命名为“id”。
多个记录插入到表中
复制代码 代码如下:
DB::table('users')->insert(array(
array('email' => 'taylor@example.com', 'votes' => 0),
array('email' => 'dayle@example.com', 'votes' => 0),
));
四、Updates
更新一个表中的记录
复制代码 代码如下:
DB::table('users')
->where('id', 1)
->update(array('votes' => 1));
五、 Deletes
删除表中的记录
复制代码 代码如下:
DB::table('users')->where('votes', 'delete();
删除表中的所有记录
复制代码 代码如下:
DB::table('users')->delete();
删除一个表
复制代码 代码如下:
DB::table('users')->truncate();
六、Unions
查询构建器还提供了一种快速的方法来“联盟”两个查询:
复制代码 代码如下:
$first = DB::table('users')->whereNull('first_name');
$users =
DB::table('users')->whereNull('last_name')->union($first)->get();
unionAll方法也可以,有相同的方法签名。
Pessimistic Locking
查询构建器包括一些“悲观锁定”功能来帮助你做你的SELECT语句。 运行SELECT语句“共享锁”,你可以使用sharedLock方法查询:
复制代码 代码如下:
DB::table('users')->where('votes', '>',
100)->sharedLock()->get();
更新“锁”在一个SELECT语句,您可以使用lockForUpdate方法查询:
复制代码 代码如下:
DB::table('users')->where('votes', '>', 100)->lockForUpdate()->get();
七、缓存查询
你可以轻松地缓存查询的结果使用记忆法:
复制代码 代码如下:
$users = DB::table('users')->remember(10)->get();
在本例中,查询的结果将为十分钟被缓存。查询结果缓存时,不会对数据库运行,结果将从默认的缓存加载驱动程序指定您的应用程序。 如果您使用的是支持缓存的司机,还可以添加标签来缓存:
复制代码 代码如下:
$users = DB::table('users')->cacheTags(array('people', 'authors'))->remember(10)->get();
280907494 开发群,群里很多搞这个的。
把debug打开看看详细错误吧

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

熱門話題

蘋果公司最新發布的iOS18、iPadOS18以及macOSSequoia系統為Photos應用程式增添了一項重要功能,旨在幫助用戶輕鬆恢復因各種原因遺失或損壞的照片和影片。這項新功能在Photos應用的"工具"部分引入了一個名為"已恢復"的相冊,當用戶設備中存在未納入其照片庫的圖片或影片時,該相冊將自動顯示。 "已恢復"相簿的出現為因資料庫損壞、相機應用未正確保存至照片庫或第三方應用管理照片庫時照片和視頻丟失提供了解決方案。使用者只需簡單幾步

PHP框架的學習曲線取決於語言熟練度、框架複雜性、文件品質和社群支援。與Python框架相比,PHP框架的學習曲線較高,而與Ruby框架相比,則較低。與Java框架相比,PHP框架的學習曲線中等,但入門時間較短。

Laravel - Artisan 指令 - Laravel 5.7 提供了處理和測試新指令的新方法。它包括測試 artisan 命令的新功能,下面提到了演示?

輕量級PHP框架透過小體積和低資源消耗提升應用程式效能。其特點包括:體積小,啟動快,記憶體佔用低提升響應速度和吞吐量,降低資源消耗實戰案例:SlimFramework創建RESTAPI,僅500KB,高響應性、高吞吐量

Laravel - 分頁自訂 - Laravel 包含分頁功能,可協助使用者或開發人員包含分頁功能。 Laravel 分頁器與查詢產生器和 Eloquent ORM 整合。自動分頁方法

Laravel - Artisan Console - Laravel 框架提供了三種主要的命令列互動工具,分別是:Artisan、Ticker 和 REPL。本章詳細介紹了 Artisan。

Laravel郵件發送失敗時的退信代碼獲取方法在使用Laravel開發應用時,經常會遇到需要發送驗證碼的情況。而在實�...

可以透過使用gjson函式庫或json.Unmarshal函數將JSON資料儲存到MySQL資料庫中。 gjson函式庫提供了方便的方法來解析JSON字段,而json.Unmarshal函數需要一個目標類型指標來解組JSON資料。這兩種方法都需要準備SQL語句和執行插入操作來將資料持久化到資料庫中。
