定制 ticetmp/comma-separated 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ticetmp/comma-separated

Composer 安装命令:

composer require ticetmp/comma-separated

包简介

This function could be useful in scenarios where traditional Eloquent relationships are not applicable, and you need to manually handle the relationship using raw SQL queries with a comma-separated values approach

README 文档

README

This function could be useful in scenarios where traditional Eloquent relationships are not applicable, and you need to manually handle the relationship using raw SQL queries with a comma-separated values approach

Install

composer require ticetmp/comma-separated:"^1"

if you store data in database like this

image

and you need to get data like this, without extra joining target table

image

this library can help you

Usage

use

use TiceTmP\GetSubQuery;

you need to send five parameter

  • $masterTable: This primary table name

  • $relationTable: This variable represents the name of the table that holds the related data.

  • $relationFieldName: It specifies the field in the relation table that is used for establishing the relationship.

  • $idsField: This parameter denotes the field in the primary table, that contains comma-separated values referencing the related records.

  • $resultFieldName: It is the alias or name given to the result of the subquery.

example query

$data = YouModel::query()
    ->addSelect(
        DB::raw(
            GetSubQuery::getRelationWithCommaSeparated($masterTable, $relationTable, $relationFieldName, $idsField, $resultFieldName)
        )
    );

return text like this to DB::raw()

(SELECT  GROUP_CONCAT(b.test3 ORDER BY b.id)
FROM    test1 a
        INNER JOIN test2 b
            ON FIND_IN_SET(b.id, a.test4) > 0
WHERE  a.id = test1.id
GROUP   BY a.id) as test5

Certainly! The provided library, implemented through the getRelationWithCommaSeparated function, is designed to address scenarios where you need to retrieve related data from multiple tables without resorting to complex table joins in Laravel Eloquent or ORM (Object-Relational Mapping). This approach minimizes the workload on the database and simplifies the data manipulation process.

This function employs a subquery using SQL to fetch related data from the {{$relationTable}}, which is the table containing the desired information. Instead of using traditional table joins, this method streamlines the process and helps avoid the complexities associated with joining two tables simultaneously. This can result in improved database performance and reduced code complexity.

By utilizing comma-separated values in the {{$idsField}} to store related data, the code achieves a reduction in both code complexity and SQL commands, as there is no need for extensive table joining. This can contribute to a lighter workload on the database.

It's important to note that while using comma-separated values for storing related data can simplify code and SQL queries, it may not always be the best choice. Especially in cases where there is a large volume of data or when more flexibility is needed in searching and managing data, careful consideration should be given to the trade-offs associated with this approach.

Enjoy.

ticetmp/comma-separated 适用场景与选型建议

ticetmp/comma-separated 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 12 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 03 月 01 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 ticetmp/comma-separated 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 ticetmp/comma-separated 我们能提供哪些服务?
定制开发 / 二次开发

基于 ticetmp/comma-separated 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 12
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 16
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2024-03-01