- Posts: 1
- Thank you received: 0
How do I write a query using
Additional Condition:
SELECT training_year, category_stud, education_prog, sum(state_order), sum(subvention)
FROM acmw3_request
GROUP BY training_year, category_stud, education_prog
Please Log in or Create an account to join the conversation.
Hi,
The "Additional Condition" option only applies to the where statement of the query. If you want to perform more complicated queries I suggest you to use database view. Here is an article about it.
toolsjx.com/faq/3-how-to-create-a-databa...use-it-with-tools-jx
Please Log in or Create an account to join the conversation.