-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about join #29
Comments
That is currently not supported. |
can we do this using string like you suggest on other post ? ->join('role', 'ON role.id = user.id AND role.id = 100') |
Maybe you could add a generic executeRawQuery() for complex query. |
You can already run raw queries:
|
Oh perfect, thanks! |
Forgot, this will also work: ->join('role', 'ON role.id = user.id AND role.id = 100') ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
when we have join with extra condition like this below:
echo $db->from('user')
->join('role', array('role.id' => 'user.id', 'role.id' => 10))
->select()
->sql();
Then we are passing an array with the same index "role.id".
How to handle this ?
Thanks!
The text was updated successfully, but these errors were encountered: