- A
where
Why wrong: Incorrect. The 'where' operator filters rows in a single table and cannot join multiple sources.
- B
join
Correct. The 'join' operator can combine rows from two tables based on a common key and a time window, enabling correlation of account creation and sign-in events.
- C
union
Why wrong: Incorrect. The 'union' operator appends rows from multiple tables but does not correlate them.
- D
summarize
Why wrong: Incorrect. The 'summarize' operator aggregates data within a single table and cannot join tables.
SC-200 Mitigate threats using Microsoft Sentinel Practice Question
This SC-200 practice question tests your understanding of mitigate threats using microsoft sentinel. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. A key principle to apply: the 'join' operator combines rows from two or more tables.. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A SOC analyst is creating a scheduled analytics rule in Microsoft Sentinel to detect potential account compromise. The rule should trigger when a user account is created in Microsoft Entra ID and, within one hour, that same account is used to sign in from an unfamiliar location. The queries use the AuditLogs table for account creation and the SigninLogs table for sign-ins. Which KQL operator should be used to correlate these two events from different tables within a specific time window?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
join
The correct answer is B (join) because the scenario requires correlating two events from different tables (AuditLogs and SigninLogs) based on a common field (e.g., UserPrincipalName) and within a specific time window (one hour). The join operator in KQL allows you to combine rows from two tables by matching keys, and you can use the 'where' clause on the time fields to enforce the one-hour window. This is the only operator that supports row-wise correlation across tables with a time constraint.
Key principle: The 'join' operator combines rows from two or more tables.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
where
Why it's wrong here
Incorrect. The 'where' operator filters rows in a single table and cannot join multiple sources.
- ✓
join
Why this is correct
Correct. The 'join' operator can combine rows from two tables based on a common key and a time window, enabling correlation of account creation and sign-in events.
Related concept
The 'join' operator combines rows from two or more tables.
- ✗
union
Why it's wrong here
Incorrect. The 'union' operator appends rows from multiple tables but does not correlate them.
- ✗
summarize
Why it's wrong here
Incorrect. The 'summarize' operator aggregates data within a single table and cannot join tables.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often confuse union (which stacks rows) with join (which correlates rows), especially when the question mentions 'different tables' and 'time window' — union cannot enforce a time-based relationship between rows from separate tables.
Detailed technical explanation
How to think about this question
Under the hood, the join operator in KQL uses hash matching to combine rows from the left and right tables based on the specified key (e.g., UserPrincipalName). To enforce the one-hour time window, you must add a condition in the 'on' clause or in a subsequent 'where' clause comparing timestamps (e.g., on $left.TimeGenerated between $right.TimeGenerated and $right.TimeGenerated + 1h). A subtle behavior: if the time fields are not indexed or if the tables are large, the join can be resource-intensive; using 'kind=leftouter' or 'kind=inner' with a time-bounded condition can improve performance.
KKey Concepts to Remember
- The 'join' operator combines rows from two or more tables.
- It requires a common key (e.g., UserPrincipalName) to match rows.
- 'join' supports time-based correlation using `lookback` or `within` clauses.
- Various join kinds (e.g., `inner`, `leftouter`) control how rows are matched.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
The 'join' operator combines rows from two or more tables.
Real-world example
How this comes up in practice
A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. The 'join' operator combines rows from two or more tables. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.
What to study next
Got this wrong? Here's your next step.
Review the 'join' operator combines rows from two or more tables., then practise related SC-200 questions on the same topic to reinforce the concept.
- →
Mitigate threats using Microsoft Sentinel — study guide chapter
Learn the concepts, then practise the questions
- →
Mitigate threats using Microsoft Sentinel practice questions
Targeted practice on this topic area only
- →
All SC-200 questions
1,639 questions across all exam domains
- →
Microsoft Security Operations Analyst SC-200 study guide
Full concept coverage aligned to exam objectives
- →
SC-200 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related SC-200 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Manage a security operations environment practice questions
Practise SC-200 questions linked to Manage a security operations environment.
Respond to security incidents practice questions
Practise SC-200 questions linked to Respond to security incidents.
Perform threat hunting practice questions
Practise SC-200 questions linked to Perform threat hunting.
Mitigate threats using Microsoft Defender XDR practice questions
Practise SC-200 questions linked to Mitigate threats using Microsoft Defender XDR.
Mitigate threats using Microsoft Defender for Cloud practice questions
Practise SC-200 questions linked to Mitigate threats using Microsoft Defender for Cloud.
Mitigate threats using Microsoft Sentinel practice questions
Practise SC-200 questions linked to Mitigate threats using Microsoft Sentinel.
SC-200 fundamentals practice questions
Practise SC-200 questions linked to SC-200 fundamentals.
SC-200 scenario practice questions
Practise SC-200 questions linked to SC-200 scenario.
SC-200 troubleshooting practice questions
Practise SC-200 questions linked to SC-200 troubleshooting.
Practice this exam
Start a free SC-200 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this SC-200 question test?
Mitigate threats using Microsoft Sentinel — This question tests Mitigate threats using Microsoft Sentinel — The 'join' operator combines rows from two or more tables..
What is the correct answer to this question?
The correct answer is: join — The correct answer is B (join) because the scenario requires correlating two events from different tables (AuditLogs and SigninLogs) based on a common field (e.g., UserPrincipalName) and within a specific time window (one hour). The join operator in KQL allows you to combine rows from two tables by matching keys, and you can use the 'where' clause on the time fields to enforce the one-hour window. This is the only operator that supports row-wise correlation across tables with a time constraint.
What should I do if I get this SC-200 question wrong?
Review the 'join' operator combines rows from two or more tables., then practise related SC-200 questions on the same topic to reinforce the concept.
What is the key concept behind this question?
The 'join' operator combines rows from two or more tables.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Keep practising
More SC-200 practice questions
- An organization uses Microsoft 365 Defender. During an incident, the analyst wants to automatically isolate a compromise…
- A security analyst is preparing to use a Jupyter notebook for threat hunting in Microsoft Sentinel. Which of the followi…
- An organization has enabled enhanced security features for a hybrid infrastructure including SQL servers on-premises and…
- A phishing email was delivered to several users. The analyst wants to find all messages in the campaign, see delivery ac…
- A company uses Microsoft Defender for Cloud and wants to automatically ensure that all Azure virtual machines have a spe…
- A company uses Microsoft Defender for Cloud and wants to automatically remediate non-compliant Azure resources by deploy…
Last reviewed: Jun 11, 2026
This SC-200 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SC-200 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.