1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
slava [35]
3 years ago
15

Which of the following SQL statements will display all customers who have not recently placed an order? a. SELECT customer# FROM

customers UNION b. SELECT customer# FROM orders; SELECT customer# FROM orders MINUS c. SELECT customer# FROM customers; SELECT customer# FROM orders INTERSECT d. SELECT customer# FROM customers; SELECT customer# FROM customers MINUS
Computers and Technology
1 answer:
JulsSmile [24]3 years ago
3 0

Answer:

The correct option is option 4 from the options indicated below:

Explanation:

The options are as given below

1-SELECT customer# FROM customers

UNION

SELECT customer# FROM orders;

2-SELECT customer# FROM orders

MINUS

SELECT customer# FROM customers;

3-SELECT customer# FROM orders

INTERSECT

SELECT customer# FROM customers;

4-SELECT customer# FROM customers

MINUS

SELECT customer# FROM orders;

Option 1 is not correct as it will provide the list of all the customers whether they have placed order or not.

Option 2 is not correct as it will provide the list of customers who have placed order but are not in the customers table. This will return the empty records.

Option 3 is not correct as it will provide the list of customers who have placed the order.

Option 4 is correct as it will provide the list of customers from the CUSTOMERS table which are not in the Orders table. thus the list of customers who have not placed the order yet.

You might be interested in
Can someone help me plz
8090 [49]
B = x is equal to 5
and
C = “ have special meaning and should not be used when naming variables “.
3 0
3 years ago
Sharon is responsible for the security on web applications. She’s looking to see if all applications have input validation. What
LiRa [457]

Answer:

Options Include:

<em>A) Server-side validation </em>

<em>B) Client-side validation </em>

<em>C) Validate in trust </em>

D) Client-side and server-side validation

<em>Client-side and server-side validation is Correct</em>

Explanation:

The best option is to validate the client side with the server side. Using these together would provide the best testing option for Sharon.

<em>This keeps user feedback instantly without wasting postbacks while also protecting against JavaScript disabled users. That's how the validation controls for ASP.NET operate. </em>

This is definitely not over-engineering as there are risks of using one without the other.

Individual validation on the server side and individual validation on the client side are both incorrect. Trust validation is not a form of validation.

4 0
3 years ago
Whats a good way to remember to log out
Gemiola [76]
You just need to set a reminder on your phone and try and remember

3 0
3 years ago
Many mobile devices can perform internet searches and other tasks via
OleMash [197]
Cellular Network?
Browser?

there are a lot of things that allow mobile devices to do internet searches.
7 0
3 years ago
The most basic business database is comprised of: three tables: for suppliers, parts, and sales. five tables: for customers, emp
DaniilM [7]

Answer:

The answers is: five tables: for customers, employees, suppliers, parts (or products), and sales.

Explanation:

A business database is an organized collection of information related to a business's activities. It helps organize information about your customers, sales, human resources and production.

Depending on the size of the company, databases can include huge amounts of information including past prices, profits, profit margins, alternative vendors, customer buying patterns, etc.

The basic information that should be included even for small companies is: clients, human resources, vendors, production, and sales.

4 0
3 years ago
Other questions:
  • A windows computer is shared between several users, each with his own local user account. Each user has his own dedicated, uniqu
    9·1 answer
  • While a hard drive is running, even a slight bump against the computer may cause the
    9·2 answers
  • Is there truth? Does truth exists?
    14·2 answers
  • Look at the following code.int x = 7;int *iptr = &amp;x;What will be displayed if you send the expression *iptr to cout ? What h
    8·1 answer
  • After adjusting your seat, your _____ should be as close as possible to the backrest
    7·2 answers
  • The ________ view in access looks similar to an excel spreadsheet.
    5·1 answer
  • Look at the following structure declaration.
    6·1 answer
  • 6.23 LAB: Convert to binary - functions Instructor note: This is a lab from a previous chapter that now requires the use of a fu
    5·1 answer
  • Climatologist use weather balloons, stethoscopes, and satellites true or false
    14·1 answer
  • Write code which takes a user input of a String and an integer. The code should print each letter of the String the number of ti
    15·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!