Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Consider the following SQL query about a database of actors, film companies, and job vacancies: SELECT tbl_candidate.Surname, tbl_candidate. Firstname, tbl_candidate.Build, tbl_candidate.Fighting, tbl_candidate.Dance FROM tbl_candidate WHERE
Consider the following SQL query about a database of actors, film companies, and job vacancies: SELECT tbl_candidate.Surname, tbl_candidate. Firstname, tbl_candidate.Build, tbl_candidate.Fighting, tbl_candidate.Dance FROM tbl_candidate WHERE (((tbl_candidate.Build)="Large") AND ((tbl_candidate.Fighting)= Yes)) OR (((tbl_candidate.Build) ="slim") AND ((tbl_candidate.Dance)=Yes)); In this query, what condition must candidates meet to be included in the result set? They must have a large build and prefer dancing. They must have a large build and prefer fighting. They must have a slim build and prefer dancing. They must have either a large build and prefer fighting or a slim build and prefer dancing. They must have a slim build and prefer fighting.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started