If you want to include rows in a JOIN operation where there is no match in both tables, you would use a ________ JOIN.
- INNER
- OUTER
- SELF
- CROSS
To include rows where there's no match in both tables, you would use an "OUTER JOIN." This type of join includes unmatched rows from at least one of the tables.
Loading...
Related Quiz
- You should always close a file in PHP using the fclose() function after you're done with it.
- What are some commonly used network functions available in PHP?
- The $_POST superglobal in PHP is often used to collect form data sent via the POST method.
- CSRF attacks primarily target which aspect of a web application?
- If a required field is left empty in a PHP form, the form can still be submitted.