Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1043149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:37:19+00:00 2026-05-16T15:37:19+00:00

Anyone knows a good way to make UNION query in CakePHP? I would like

  • 0

Anyone knows a good way to make UNION query in CakePHP? I would like to avoid using $this->query();.

With two tables t1, t2:

SELECT * FROM t1
LEFT JOIN t2 ON t1.id = t2.id
UNION
SELECT * FROM t1
RIGHT JOIN t2 ON t1.id = t2.id

With three tables t1, t2, t3:

SELECT * FROM t1
LEFT JOIN t2 ON t1.id = t2.id
LEFT JOIN t3 ON t2.id = t3.id
UNION
SELECT * FROM t1
RIGHT JOIN t2 ON t1.id = t2.id
LEFT JOIN t3 ON t2.id = t3.id
UNION
SELECT * FROM t1
RIGHT JOIN t2 ON t1.id = t2.id
RIGHT JOIN t3 ON t2.id = t3.id
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T15:37:20+00:00Added an answer on May 16, 2026 at 3:37 pm

    Too many coders try to limit themselves to the functionality of a framework. DON’T. Use what the framework provides. If it does not have the functionality you seek, then either:

    • Code the functionality you need into a class extension

    or

    • Custom spin the code within the framework to suit your needs.

    Often, developers try to hammer a square peg into a round hole and wind up doing way too much extra work that really only makes the code complicated. Take a step back and ask why you are using the framework to begin with. It brings structure to an unstructured language. It provides solid reusable foundation to build your application on. It is not intended to be a box to put yourself in and be limited.

    UPDATE: I took a minute to read Complex Find Conditions and found your answer:

    $joins = array(
        array(
            'table' => 'test_twos',
            'alias' => 'TestTwo',
            'type' => 'LEFT',
            'conditions' => array(
                'TestTwo.id = TestOne.id',
            )
        ),
        array(
            'table' => 'test_threes',
            'alias' => 'TestThree',
            'type' => 'LEFT',
            'conditions' => array(
            'TestThree.id = TestOne.id',
        )
        )
    );
    
    $dbo = $this->getDataSource();
    $subQuery = $dbo->buildStatement(
        array(
            'fields' => array('*'),
            'table' => $dbo->fullTableName($this),
            'alias' => 'TestOne',
            'limit' => null,
            'offset' => null,
            'joins' => $joins,
            'conditions' => null,
            'order' => null,
            'group' => null
        ),
        $this->TestOne
    );
    $query = $subQuery;
    
    $query .= ' UNION ';
    $joins = array(
        array(
            'table' => 'test_twos',
            'alias' => 'TestTwo',
            'type' => 'LEFT',
            'conditions' => array(
                'TestTwo.id = TestOne.id',
            )
        ),
        array(
            'table' => 'test_threes',
            'alias' => 'TestThree',
            'type' => 'RIGHT',
            'conditions' => array(
            'TestThree.id = TestOne.id',
            )
        )
    );
    
    $dbo = $this->getDataSource();
    $subQuery = $dbo->buildStatement(
        array(
        'fields' => array('*'),
        'table' => $dbo->fullTableName($this),
        'alias' => 'TestOne',
        'limit' => null,
        'offset' => null,
        'joins' => $joins,
        'conditions' => null,
        'order' => null,
        'group' => null
        ),
        $this->TestOne
    );
    
    $query .= $subQuery;
    
    pr($query);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Anyone knows a good way to resize any window to for example 640x480? Reason
Does anyone know of a good way to calculate the semantic distance between two
Anyone know of a good way to unit test Scala actors? In the general
Does anyone know a good safe way to redirect the output of a printf-style
Does anyone know of any software or a good way for developers to build
Does any one know a good way to do remote procedure calls in windows
Anyone know a good book or post about how to start in EF? I
Anyone know a good Regex expression to drop in the ValidationExpression to be sure
Anyone know a good lib where i can run the strings before they are
Does anyone know a good Java lib that will hook into SVN so I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.