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

  • Home
  • SEARCH
  • 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 9141821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:41:46+00:00 2026-06-17T09:41:46+00:00

I would like to do a simple INNER JOIN between two tables in Zend2.

  • 0

I would like to do a simple INNER JOIN between two tables in Zend2.

Concretely, I would like to do this in Zend2:

SELECT * FROM foo, bar WHERE foo.foreign_id = bar.id;

I have a FooTable:

class FooTable
{
  protected $tableGateway;

  public function __construct(TableGateway $tableGateway)
  {
    $this->tableGateway = $tableGateway;
  }

  public function get($id)
  {
    $rowset = $this->tableGateway->select(function (Select $select) {
      $select->from('foo');
    });
  }
}

The $select->from('foo'); returns an error:

==> Since this object was created with a table and/or schema in the constructor, it is read only.

So, I can’t tweak my FROM statement to match a simple inner join between FooTable and BarTable.

  • 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-06-17T09:41:46+00:00Added an answer on June 17, 2026 at 9:41 am

    I hope this will help you along your journey as this is a working example I have:

    namespace Pool\Model;
    
    use Zend\Db\TableGateway\AbstractTableGateway;
    use Zend\Db\Sql\Select;
    
    class IpaddressPool extends AbstractTableGateway
    {
        public function __construct($adapter)
        {
            $this->table = 'ipaddress_pool';
    
            $this->adapter = $adapter;
    
            $this->initialize();
        }
    
        public function Leases($poolid)
        {
            $result = $this->select(function (Select $select) use ($poolid) {
                $select
                    ->columns(array(
                        'ipaddress',
                        'accountid',
                        'productid',
                        'webaccountid'
                    ))
                    ->join('account', 'account.accountid = ipaddress_pool.accountid', array(
                        'firstname',
                        'lastname'
                    ))
                    ->join('product_hosting', 'product_hosting.hostingid = ipaddress_pool.hostingid', array(
                        'name'
                    ))
                    ->join('webaccount', 'webaccount.webaccountid = ipaddress_pool.webaccountid', array(
                        'domain'
                    ))->where->equalTo('ipaddress_pool.poolid', $poolid);
            });
    
            return $result->toArray();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 2 simple tables that I would like to perform an INNER JOIN
A simple inner join select * from table1 a inner join dbo.table2 b on
i would like a simple help... i have a url like this: example.com/profile.php?id= &
I would like links to be trigger on double click. Something simple like this:
I would like to implement a simple AR desktop application. This application should first
I would like to create a simple control that inherits from HeaderedContentControl, and has
I have the following tables: platforms(id,platformname) games(id,title,platformid) gameslists(id,memberid,gameid) I would like to select all
I have the following line: $products = $dbh->query(SELECT piP2Components.typeID, invTypes.typeName FROM piP2Components INNER JOIN
I am developing a site and i would like some simple markup. I would
I would like to create simple objects at runtime (textbox, label, etc) and add

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.