We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I have 2 main questions.
SELECT id, firstname, lastname, age ORDER BY age DESC LIMIT 10, 20
How can i do such thing with Concourse?
[ [ 'name' => 'John Doe', 'department' => 'Engineering', 'title' => 'Senior Software Engineer', 'role' => 'Software Engineer - Backend', 'manager' => Link::to_where('title = Director of Engineering'), 'salary' => 10.00, 'location' => 'Atlanta', 'exempt' => True ], [ 'name' => 'Jane Doe', 'department' => 'Engineering', 'title' => 'Director of Engineering', 'role' => 'Director', 'manager_of' => Link::to_where('department = Engineering'), 'salary' => 20.00, 'location' => 'Atlanta', 'exempt' => True ] ];
SELECT * FROM people WHERE manager IN ( SELECT id FROM people WHERE title = 'Director of Engineering' AND salary = 20.00 ) ORDER BY name ASC
Thanks Mehrdad
The text was updated successfully, but these errors were encountered:
Any news?
Sorry, something went wrong.
No branches or pull requests
Hi,
I have 2 main questions.
How can i do such thing with Concourse?
Something like this:
Thanks
Mehrdad
The text was updated successfully, but these errors were encountered: