Find students enrol led in a class taught by a specified teacher
To create an advanced query a request to find a group of records that match specific criteria at a particular time
to search for all students enro
Note: This advanced query will only work within the Student List. After running the query,
you will be able to create a snapshot![]() |
- Go to the School view.
- Click the Student tab.
- From the Options menu, click Query.
- At the top of the Query pop-up, click Advanced Mode.
- Under SELECT * FROM STUDENT, copy and paste the following:
WHERE STD_OID IN (
SELECT TRN_STD_OID
FROM STUDENT_TRANSCRIPT
WHERE TRN_MST_OID IN (
SELECT MST_OID
FROM SCHEDULE_MASTER
WHERE MST_SCH_OID = '[SCH_OID]'
AND MST_STF_OID_PRIMARY = '[STF_OID]'
)
)
- Replace the [SCH_OID] value in the query as follows:
- Go to the School view, click the School tab and then the Schedules side-tab.
- Hover over the desired school year, such as 2020-2021 (or right-click and select Properties or Copy Link Location).
- The following line appears in the browser’s status bar at the bottom of the window (or in the Properties pop-up or in your clipboard if you've copied it):
javascript:doParamSubmit(2100, document.form[‘contextListForm’], ‘SCH000000i0116’)
- Replace the [STF_OID] value in the query as follows:
- Go to the School view and click the Staff tab.
- Hover over the desired staff name, such as Petullo, Anna (or right-click and select Properties or Copy Link Location). The following line appears in the browser’s status bar at the bottom of the window (or in the Properties pop-up or in your clipboard if you've copied it):
javascript:doParamSubmit(2100, document.form[‘contextListForm’], ‘STF0000000004e’)
- Click Search. The results of your query appear.