-
-
Notifications
You must be signed in to change notification settings - Fork 322
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
Select in other select #1081
Comments
hi. Select inside |
storage.select( asterisk(), from( select( ... ) ) ); |
@OldMen ok how to specify |
storage.select( asterisk(), from( select( ... ) ), where( ... ) ); |
please expand |
|
ok it looks nice thanks. What if we need to use aliases inside sub-select and reference to it in the outer |
Я не часто использую алиасы, поэтому не могу сразу рассмотреть проблему. :) |
I can add a support for query provided by you no problem but what to do with queries like this SELECT departments.department_name, subquery1.latest_hire
FROM departments,
(SELECT department_id, MAX(hire_date) AS latest_hire
FROM employees
GROUP BY department_id) subquery1
WHERE subquery1.department_id = departments.department_id; ? |
А если попробовать такой интерфейс?
|
@OldMen how to specify |
@OldMen I like Russian language, I speak it mostly and it is my mother language but please write public issues in English cause open source has to be written in English. If you want to speak Russian let's use email [email protected] instead. Thanks |
@OldMen are you there? |
Please tell me how to execute the following query:
The text was updated successfully, but these errors were encountered: