- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Laravel5.1 框架数据库查询构建器用法实例详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例讲述了Laravel5.1 框架数据库查询构建器用法。分享给大家供大家参考,具体如下:
今儿个咱说说查询构建器。它比运行原生SQL要简单些,它的操作面儿也是比较广泛的.
先来看看它的语法:
1
2
3
4
5
|
public
function
getSelect()
{
$result
= DB::table(
'articles'
)->get();
dd(
$result
);
}
|
查询构建器就是通过table方法返回的,使用get()可以返回一个结果集(array类型) 这里是返回所有的数据,当然你也可以链接很多约束.
1
2
3
4
5
6
|
public
function
getSelect()
{
$result
= DB::table(
'articles'
)->where(
'title'
,
'learn database'
)->get();
// 获取整列数据
$articles
= DB::table(
'articles'
)->where(
'title'
,
'learn database'
)->first();
// 获取一行数据
dd(
$result
,
$articles
);
}
|
我们可以通过where来增添条件.
如果你想要取到某列的值的话 可以使用lists方法:
1
2
3
4
5
6
|
public
function
getSelect()
{
$result
= DB::table(
'articles'
)->where(
'id'
,
'<'
, 2)->lists(
'title'
);
$titles
= DB::table(
'articles'
)->lists(
'title'
);
dd(
$result
,
$titles
);
}
|
在我们数据表中数据特别特别多时 可以使用组块结果集 就是一次获取一小块数据进行处理 。
1
2
3
4
5
6
7
8
9
|
public
function
getSelect()
{
DB::table(
'articles'
)->chunk(2,
function
(
$articles
){
foreach
(
$articles
as
$article
){
echo
$article
->title;
echo
"<br />"
;
}
});
}
|
如果说要终止组块运行的话 返回false就可以了:
1
2
3
4
5
6
|
public
function
getSelect()
{
DB::table(
'articles'
)->chunk(2,
function
(
$articles
){
return
false;
});
}
|
构建器还提供了很多的实用方法供我们使用:
1
2
3
4
5
|
public
function
getArticlesInfo()
{
$article_count
= DB::table(
'articles'
)->
count
();
dd(
$article_count
);
}
|
1
2
3
4
5
|
public
function
getArticlesInfo()
{
$maxCommentCount
= DB::table(
'articles'
)->max(
'comment_count'
);
dd(
$maxCommentCount
);
}
|
1
2
3
4
|
public
function
getArticlesInfo()
{
$commentSum
= DB::table(
'articles'
)->sum(
'comment_count'
);
}
|
1
2
3
4
5
|
public
function
getArticlesInfo()
{
$commentAvg
= DB::table(
'articles'
)->avg(
'comment_count'
);
dd(
$commentAvg
);
}
|
select语句可以获取指定的列,并且可以自定义键:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
public
function
getArticlesInfo()
{
$articles
= DB::table(
'articles'
)->select(
'title'
)->get();
// 输出结果:
// array:3 [▼
// 0 => {#150 ▼
// +"title": "laravel database"
// }
// 1 => {#151 ▼
// +"title": "learn database"
// }
// 2 => {#152 ▼
// +"title": "alex"
// }
// ]
$articles1
= DB::table(
'articles'
)->select(
'title as articles_title'
)->get();
// 输出结果:
// array:3 [▼
// 0 => {#153 ▼
// +"articles_title": "laravel database"
// }
// 1 => {#154 ▼
// +"articles_title": "learn database"
// }
// 2 => {#155 ▼
// +"articles_title": "alex"
// }
// ]
$articles2
= DB::table(
'articles'
)->select(
'title as articles_title'
,
'id as articles_id'
)->get();
// array:3 [▼
// 0 => {#156 ▼
// +"articles_title": "laravel database"
// +"articles_id": 1
// }
// 1 => {#157 ▼
// +"articles_title": "learn database"
// +"articles_id": 2
// }
// 2 => {#158 ▼
// +"articles_title": "alex"
// +"articles_id": 3
// }
// ]
}
|
关于distinct方法我还没弄明白到底是什么意思 适用于什么场景,也欢迎大神们给出个答案 谢谢 。
distinct方法允许你强制查询返回不重复的结果集.
1
2
3
4
|
public
function
getArticlesInfo()
{
$articles
= DB::table(
'articles'
)->distinct()->get();
}
|
如果你想要添加一个select 可以这样做:
1
2
3
4
5
6
|
public
function
getArticlesInfo()
{
$query
= DB::table(
'articles'
)->select(
'title as articles_title'
);
$articles
=
$query
->addSelect(
'id'
)->get();
dd(
$articles
);
}
|
where语句是比较常用的,经常用他来进行条件筛选.
现在来详细介绍下where方法 它接收三个参数:
1
2
3
4
5
6
7
8
|
public
function
getArticlesInfo()
{
$articles1
= DB::table(
'articles'
)->where(
'id'
,
'2'
)->get();
// 等于
$articles2
= DB::table(
'articles'
)->where(
'id'
,
'>'
,
'2'
)->get();
// 大于
$articles3
= DB::table(
'articles'
)->where(
'id'
,
'<>'
,
'2'
)->get();
// 不等于
$articles4
= DB::table(
'articles'
)->where(
'id'
,
'<='
,
'2'
)->get();
// 小于等于
$articles5
= DB::table(
'articles'
)->where(
'title'
,
'LIKE'
,
'%base'
)->get();
// 类似
}
|
orWhere和where接收的参数是一样的,当where逻辑没有查找到 or查找到了 返回or的结果,当where查找到了 or也查找到了 返回它们的结果.
1
2
3
4
5
|
public
function
getArticlesInfo()
{
$articles
= DB::table(
"articles"
)->where(
'id'
,
'='
,
'5'
)->orWhere(
'title'
,
'laravel database'
)->get();
dd(
$articles
);
}
|
whereBetween是指列值是否在所给定的值之间:
1
2
3
4
5
|
public
function
getArticlesInfo()
{
$articles
= DB::table(
"articles"
)->whereBetween(
'id'
, [1, 3])->get();
dd(
$articles
);
}
|
↑ 上述代码是查找id在1~3之间的集合.
whereNotBetween和whereBetween相反:
1
2
3
4
5
|
public
function
getArticlesInfo()
{
$articles
= DB::table(
"articles"
)->whereNotBetween(
'id'
, [1, 3])->get();
dd(
$articles
);
}
|
↑ 上述代码是查找id不在1~3之间的集合.
whereIn是查找列值在给定的一组数据中:
1
2
3
4
5
|
public
function
getArticlesInfo()
{
$articles
= DB::table(
"articles"
)->whereIn(
'id'
, [1, 3, 5, 8])->get();
dd(
$articles
);
}
|
↑ 上述代码中是查找ID为1,3,5,8的集合,不过我们数据库中只有id为1和3的数据 那么它只会返回id为1和3的集合.
whereNotIn和whereIn相反的:
1
2
3
4
5
|
public
function
getArticlesInfo()
{
$articles
= DB::table(
"articles"
)->whereNotIn(
'id'
, [1, 3, 5, 8])->get();
dd(
$articles
);
}
|
↑ 上述代码中是查找ID不是1,3,5,8的集合.
whereNull是查找列值为空的数据:
1
2
3
4
5
|
public
function
getArticlesInfo()
{
$articles
= DB::table(
"articles"
)->whereNull(
'created_at'
)->get();
dd(
$articles
);
}
|
↑ 上述代码中是查找created_at为空的集合.
whereNotNull就不用说啦:
1
2
3
4
5
|
public
function
getArticlesInfo()
{
$articles
= DB::table(
"articles"
)->whereNotNull(
'created_at'
)->get();
dd(
$articles
);
}
|
↑ 上述代码中是查找created_at不为空的集合.
先看下最简单的插入方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public
function
getInsertArticle()
{
// 插入一条数据:
DB::table(
'articles'
)->insert(
[
'title'
=>
'get more'
,
'body'
=>
'emmmmmm......'
]
);
// 插入多条数据:
DB::table(
'articles'
)->insert([
[
'title'
=>
'testTitle1'
,
'body'
=>
'testBody1'
],
[
'title'
=>
'testTitle2'
,
'body'
=>
'testBody2'
],
// ....
]);
}
|
当你需要拿到插入数据的ID的话,可以使用获取自增ID的方法:
1
2
3
4
5
6
7
8
|
public
function
getInsertArticle()
{
// 插入一条数据:
$id
= DB::table(
'articles'
)->insertGetId(
[
'title'
=>
'get more'
,
'body'
=>
'emmmmmm......'
]
);
dd(
$id
);
}
|
1
2
3
4
5
|
public
function
getUpdateArticle()
{
$result
= DB::table(
'articles'
)->whereBetween(
'id'
, [1, 3])->update([
'comment_count'
=>0]);
dd(
$result
);
}
|
↑ update还可以返回影响了几条数据.
1
2
3
4
5
|
public
function
getUpdateArticle()
{
$result
= DB::table(
'articles'
)->whereBetween(
'id'
, [1, 3])->increment(
'comment_count'
,2);
dd(
$result
);
}
|
↑ increment接受1~2个参数,第一个参数是列名,第二个参数是可选的表示增加几(默认是1),上面的语句是:comment_count这一列的值增加2.
1
2
3
4
5
|
public
function
getUpdateArticle()
{
$result
= DB::table(
'articles'
)->whereBetween(
'id'
, [1, 3])->decrement(
'comment_count'
,2);
dd(
$result
);
}
|
↑ decrement接受1~2个参数,第一个参数是列名,第二个参数是可选的表示减少几(默认是1),上面的语句是:comment_count这一列的值减少2.
你以为加减快捷方法只接收两个参数么?nonono 它还可以接收第三个参数:
1
2
3
4
5
|
public
function
getUpdateArticle()
{
$result
= DB::table(
'articles'
)->whereBetween(
'id'
, [1, 3])->increment(
'comment_count'
, 2, [
'title'
=>
'testUpdate'
]);
dd(
$result
);
}
|
↑ 它还可以在增加/减少时对其他列进行修改.
1
2
3
4
5
|
public
function
getDeleteArticle()
{
$result
= DB::table(
'articles'
)->whereBetween(
'id'
, [1, 3])->
delete
();
dd(
$result
);
}
|
↑ 用delete删除数据,它也返回有多少行被影响.
当你想要删除所有的列 并且把自增ID归0的话 可以这么做:
1
2
3
4
|
public
function
getDeleteArticle()
{
DB::table(
'articles'
)->truncate();
}
|
查询构建器还包含一些方法帮助你在select语句中实现”悲观锁“。可以在查询中使用sharedLock方法从而在运行语句时带一把”共享锁“。共享锁可以避免被选择的行被修改直到事务提交:
1
|
DB::table(
'articles'
)->where(
'id'
,
'>'
, 100)->sharedLock()->get();
|
此外你还可以使用lockForUpdate方法。”for update“锁避免选择行被其它共享锁修改或删除:
1
|
DB::table(
'articles'
)->where(
'id'
,
'>'
, 100)->lockForUpdate()->get();
|
希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助.
原文链接:https://www.cnblogs.com/sun-kang/p/7468436.html 。
最后此篇关于Laravel5.1 框架数据库查询构建器用法实例详解的文章就讲到这里了,如果你想了解更多关于Laravel5.1 框架数据库查询构建器用法实例详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我已经安装了 composer,但是查看 Laravel 文档,我正在努力解决: “确保将 ~/.composer/vendor/bin 目录放在您的 PATH 中,以便在您的终端中运行 larave
我想在迁移时插入外键而不是在 1 中添加外键值 `public function up() { Schema::table('users', function (Bluepri
这是一个open bug on Github对于 laravel-mongodb 包,但没有任何反应。也许有人知道解决方案..? 选择作为单个文档时,日期显示为日期 { "_id": "5ca
我有一个 Laravel 应用程序,我将其用作 Joomla 中构建的更大应用程序的 API。我真的很喜欢使用 Laravel,并决定在 Joomla 应用程序中使用 Eloquent。我通过在 La
我有两个 Laravel 应用程序使用相同的数据库,因此具有相同的用户和密码。 假设应用程序称为 A 和 B。 如果用户登录 A,我该怎么做才能让他们自动登录 B?因此,如果他们登录到 A,那么当他们
我正在 github 上查看 Laravel 的源代码并注意到有一个 laravel/laravel和一个 laravel/framework .它们都链接到 Laravel 网站上的相同文档,并声明
我正在尝试将 laravel 从 5.4 版本更新到 5.5。我已经按照 Laravel 指南的指示完成了所有操作: https://laravel.com/docs/master/upgrade 当
我尝试从 foreach 向每个用户添加一些新值,但因为我使用 get,现在我不能在响应中使用分页,但我还需要向每个用户添加这些值。有什么想法吗? public function statistics
我有一个链接到销毁按钮的删除链接 $task->id ,'method'=>'DELETE'] ) }}"> delete 这是销毁函数 public function destroy($i
我想在 Laravel 中上传一组文件,但我不确定文件的路径和存储对象。八现在数据已存储,但在我的情况下路径是#。在下图中,我有从前面发送的数据(Vuejs 和我正在使用 vue-upload-com
在使用三向数据透视表时,我很难在 Laravel 中进行预加载。数据库设置如下: +-------+--------+-------+-------------+ | deals | venues |
我一直在从事 laravel 5.7 博客项目。我想评论一篇文章。 我需要实现这个: 登录前,我可以在评论文本区输入任何内容 我提交评论(当然会被auth中间件拦截) 然后我被重定向到登录页面 登录后
我正在尝试为我的应用程序中的文件创建一个临时 URL。我能够将文件上传到 S3 存储桶,并且能够使用方法 \Storage::temporaryUrl($this->url, now()->addHo
如果将 Eloquent 模型作为输入传递给 Laravel 排队作业,但模型在作业在队列中运行之前被删除,会发生什么情况? 例如,我正在使用 Laravel 5.2 构建一个电子商务网站,客户可以在
我正在尝试运行在测试运行之前将数据输入数据库的单元测试。我已经定义了一个设置方法,它为每个我不想要的测试用例运行。设置方法执行良好,没有问题。我想要的是将数据输入数据库一次,然后由所有测试用例使用。所
美好的一天。例如,我有一个带有字段/属性的模型 People: name surname 而且模型也有这个方法: public function FullName() { return "{$
我无法理解 Laravel 存在验证在检查数据库中现有记录方面的工作原理。 例如 带有 user.id = 1 的 POST 请求 是否可以使用验证规则:'id' => 'exists:users'检
我正在使用Laravel 5.2创建站点 我想做的是 INSERT同时3行 新的3行必须包含时间戳created_at updated_at。 使用Query Builder方法insert,是的,它
我试图通过href Action 将一些数据传递给我的 Controller 。我不知道为什么,但是laravel使用 GET 方法传递数据,但是我需要一个 POST 来代替 GET 。我真的不明白为
我有一个问题,我的存储文件夹上的服务器前提每 2 天重置一次。所以我运行这些命令并得到修复: sudo chown -R $USER:www-data storage sudo chown -R $U
我是一名优秀的程序员,十分优秀!