一个比较复杂的laravel orm eloquent查询
表结构如下:
<code>表名:projects 字段:id, name 表名:projects_services(1 project_id M service_id) 字段:project_id, service_id 表名:services 字段:id, name 表名:services_modules(M service_id N module_id) 字段:service_id, module_id 表名:modules 字段:id, name 表名:modules_scripts(1 module_id1 script_id) 字段:module_id, script_id 表名:scripts 字段:id, name</code>
如果我想利用laravel的eloquent查询如下信息,应该如何实现呢?
script_id, script_name, module_name, service_name, project_name
回复内容:
表结构如下:
<code>表名:projects 字段:id, name 表名:projects_services(1 project_id M service_id) 字段:project_id, service_id 表名:services 字段:id, name 表名:services_modules(M service_id N module_id) 字段:service_id, module_id 表名:modules 字段:id, name 表名:modules_scripts(1 module_id1 script_id) 字段:module_id, script_id 表名:scripts 字段:id, name</code>
如果我想利用laravel的eloquent查询如下信息,应该如何实现呢?
script_id, script_name, module_name, service_name, project_name
可以实现的,而且laravel会实现的非常优雅, 你这里是projects->project_services->services->services_modules->modules->modules_scripts->scriputs
,七表联合查询,你首先要把这七个模型创建好,并且要定义好各自得关联关系,然后:$list =Projects::with('project_services.services.services_modules.modules.modules_scripts.scripts')->where('写上你的条件')-first(); 只需要这么简短的一句代码,就可以实现你的需求,就能非常方便的获取你所要的数据 project_name:$list->name, service_name:$list->project_services->services->name; module_name:$list->project_services->services->services_modules->modules->name; sript_name:$list->project_services->services->services_modules->modules->modules_scripts->scripts->name; sript_id:$list->project_services->services->services_modules->modules->modules_scripts->scripts->id;
这种方法我用的较多,非常的方便,但是像这么长的连接查询,我还没有用过。
一楼已经说的不错
先在laravel eloquent定义这几个表的关系,文档地址:http://laravel.com/docs/5.1/eloquent-relationships
然后可以直接在controller中,使用Projects::with(...你需要的内容)就可以了。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an
