Daniel Arno owns a lawn and landscape business.  He has some very particular clients who want their lawns manicured on a specific day of the week.  He has other clients who allow him to use his own judgement as to when their lawns need cutting.  To maximize his efficiency, he wants to build a query that will show his weekly customers by name, day of the week, subdivision, and fee.  Daniel creates a table called Customers.  For those customers whose day of the week varies upon need, he leaves the day of the week field blank.
Daniel wants to build a query that will show each customer name, day of the week (if specific), and subdivision.  What criterion should he use to quickly find his customers whose day of the week varies?

What will be an ideal response?


Is Null

Computer Science & Information Technology

You might also like to view...

The_______ is a global standard for communications between wireless devices.

a) Wireless Application Protocol. b) Wireless Standard Protocol. c) WML Protocol. d) None of the above.

Computer Science & Information Technology

The ________ of a chart identifies the patterns or colors of each data series in a chart

Fill in the blank(s) with correct word

Computer Science & Information Technology

Selecting ____ means selecting everything in the image outside of the current selection.

a. the opposite b. the outside c. the inverse d. anti-aliasing

Computer Science & Information Technology

public static double secret(int first, double second){    double temp;    if (second > first)        temp = first * second;    else        temp = first - second;    return temp;}Which of the following is a valid call to the method in the accompanying figure?

A. secret(5, 4.8); B. secret(int 5, double 4.8); C. secret(int x, double y); D. public static int secret(5, 4.8);

Computer Science & Information Technology