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 6696521
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:21:04+00:00 2026-05-26T06:21:04+00:00

SELECT users.* FROM users INNER JOIN roles_users ON users.id = roles_users.user_id WHERE roles_users.role_id IN

  • 0
SELECT users.*
FROM users INNER JOIN roles_users ON users.id = roles_users.user_id 
WHERE roles_users.role_id IN (1, 2)
GROUP BY users.id
HAVING COUNT(*) = 2

I came this far:

DB::select()->from('users')->join('roles_users')
->on('users.id', '=', 'roles_users.user_id')
->where('roles_users.role_id', 'IN', array(1, 2))

How can i do GROUP BY and HAVING COUNT(*) in Kohana query builder?

  • 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-26T06:21:05+00:00Added an answer on May 26, 2026 at 6:21 am

    Why don’t you do it like this?

    $query = DB::query(Database::SELECT, 
    'SELECT users.*
    FROM users INNER JOIN roles_users ON users.id = roles_users.user_id 
    WHERE roles_users.role_id IN (1, 2)
    GROUP BY users.id
    HAVING COUNT(*) = 2'
    );
    
    $query->execute();
    

    Example:

        $results = DB::query(Database::SELECT, 
        'SELECT * FROM
        post_scheduled
        WHERE
        DATE(FROM_UNIXTIME(scheduled)) = DATE(NOW())
        AND
        TIME_FORMAT(FROM_UNIXTIME(scheduled), "%H:%i") = TIME_FORMAT(NOW(), "%H:%i")
        AND
        published = 0'
        )->execute()->as_array();
    
        foreach($results as $result)
        {
            $id = $result['id'];       
            # ...
        }
    

    Query builder… (haven’t tested)

    DB::select()
    ->from('users')
    ->join('roles_users')
    ->on('users.id', '=', 'roles_users.user_id')
    ->where('roles_users.role_id', 'IN', array(1, 2))
    ->group_by('users.id')
    ->having('COUNT(*)', '=', '2');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

SELECT user_id FROM user_accounts INNER JOIN roles_users ON (user_accounts.user_id = roles_users.user_id) WHERE roles_users.role_id IN
Is what i have: SELECT users.* FROM users INNER JOIN roles_users ON users.id =
$sql = SELECT messages.text, users.name FROM messages INNER JOIN users ON messages.user_id=users.id ORDER BY
I'm trying this: $result = mysql_query( SELECT Users.*, Posts.* FROM Users INNER JOIN Posts
I have a following SQL QUERY: SELECT articles.name, articles.price, users.zipcode FROM articles INNER JOIN
<?php $query = mysql_query(SELECT * FROM threads INNER JOIN users ON threads.poster = users.id
select * from users, awards where (users.id = awards.user_id) and awards.trophy_id not in (select
i use this statement for a single where condition ('SELECT * FROM users WHERE
I am using MySQL. I have several lookups like this: SELECT * from users
I have a SQL-statement like this: SELECT name FROM users WHERE deleted = 0;

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.