Browse W
Alphabetical listing with fast deep pagination.
66619 items • Page 1144 / 1333
Write a query (do NOT give me the DATA, give me the query that produces the data
Write a query (do NOT give me the DATA, give me the query that produces the data) that would do the following: A) Find the name and how many years employed for each employee with …
Write a query in *********** relational algebra********** for the following requ
Write a query in ***********relational algebra********** for the following requests: a. Find all airlines that fly to all Canadian airports. b. Find all airlines that fly to a Can…
Write a query in domain relational calculus. The following relational database s
Write a query in domain relational calculus. The following relational database schema AUCTION models the business data of an online auction system: - PERSON={pid, pname, phone, lo…
Write a query that displays all the fields in the ORDERS table Write a query tha
Write a query that displays all the fields in the ORDERS table Write a query that displays the title and cost of books in the BOOKS table. Write a query that displays the title an…
Write a query that lists ids and scores of all scores for which the next score a
Write a query that lists ids and scores of all scores for which the next score above them (if any) is at least 10 points higher. The highest score in the entire table also qualifi…
Write a query that returns the first and last names of the students, whose favor
Write a query that returns the first and last names of the students, whose favorite CSE course is either CSE 480 (this class) or CSE 450 (a class Ive taught) Order the results by …
Write a query that shows the title and retail price of books that were published
Write a query that shows the title and retail price of books that were published after 2005. Sort the results by title in ascending order. Write a query that shows the first name …
Write a query that will display the customer number, first name, and last name f
Write a query that will display the customer number, first name, and last name for every customer with a balance greater than $50. Display the first and last name as a single colu…
Write a query that will list the part number and part description for all parts
Write a query that will list the part number and part description for all parts in the PART table. SALES REP CUSTOMER NUMBER CHARI3) SLSREP NUMBER CHAR(2) LAST FIRST STREET CITY S…
Write a query to display each sales reps ID and the total number of customers th
Write a query to display each sales reps ID and the total number of customers that they have. Only include those reps that have more than 10 customers. SalesRep PK RepID varchar(2…
Write a query to display each state, and the total number of customers in that s
Write a query to display each state, and the total number of customers in that state. Only include those states that have less than 100 customers. (TCO 7) Write a query to display…
Write a query to display the customer number, last name and first name for every
Write a query to display the customer number, last name and first name for every customer represented by sales rep 15 or sales rep 20. (TCO 6) Write a query to display the custome…
Write a query to display the earliest date an order has been placed, formatted a
Write a query to display the earliest date an order has been placed, formatted as month dd, yyyy. SalesRep Customer PK ReplD int varchar(20) varchar(20) PK CustomerlD int O--OLast…
Write a query to display the employees name and hire date for all employees in t
Write a query to display the employees name and hire date for all employees in the same department as 'Blake'. Exclude 'Blake'. Create a query to display the employee number and n…
Write a query to display the employees name and hire date for all employees in t
Write a query to display the employees name and hire date for all employees in the same department as 'Blake'. Exclude 'Blake'. Create a query to display the employee number and n…
Write a query to display the following in this sequence: job, the number of peop
Write a query to display the following in this sequence: job, the number of people with the same job, and the total salary within each job.
Write a query to display the invoice numbers, product SKUs, product descriptions
Write a query to display the invoice numbers, product SKUs, product descriptions, and band ID for sales of sealer and top coat products of the same brand on the same invoice The B…
Write a query to display the invoice numbers, product SKUs, product descriptions
Write a query to display the invoice numbers, product SKUs, product descriptions, and band ID for sales of sealer and top coat products of the same brand on the same invoice The B…
Write a query to display the name, department number, and department name for al
Write a query to display the name, department number, and department name for all employees. Create a unique listing of all jobs that are in department 30. Include the location of…
Write a query to display the patron ID, book number, and days kept for each chec
Write a query to display the patron ID, book number, and days kept for each check-out. "Days kept" is the difference from the date on which the book is returned to the date it was…
Write a query to display the starting salary for each employee. The starting sal
Write a query to display the starting salary for each employee. The starting salary would be the entry in the salary history with the oldest salary start date for each employee. C…
Write a query to display the, last name, first name and city for every customer
Write a query to display the, last name, first name and city for every customer in Florida (use FL) or Texas (use TX) Florida (use FL) or Texas (use TX) SalesRep PK ReplD int Cust…
Write a query to list all books where cost is greater than average cost. The rep
Write a query to list all books where cost is greater than average cost. The report needs to be sorted by cost and should look like this: The required script file for this query i…
Write a query to list all reservations (all fields) for flight 278 on February 2
Write a query to list all reservations (all fields) for flight 278 on February 21, 2012. Based On: Grand Travel Airlines has to keep track of its flight and airplane history. A fl…
Write a query to list the AirplaneNumber and PassengerCapacity of all airplanes
Write a query to list the AirplaneNumber and PassengerCapacity of all airplanes with their Model values starting with a letter "P" or "M". Grand Travel Airlines has to keep track …
Write a query to list total fair paid by passenger, first name, last name for al
Write a query to list total fair paid by passenger, first name, last name for all passengers in descending order of last name and first name. Based on: Grand Travel Airlines has t…
Write a query to obtain a listing of all customer names, displaying the first le
Write a query to obtain a listing of all customer names, displaying the first letter of the first and last names in upper case and the rest in lower case letters. Write a query to…
Write a query to produce the number of invoices and the total purchase amounts b
Write a query to produce the number of invoices and the total purchase amounts by customer, using the output shown in Figure P7.35 as your guide. (Compare this summary to the resu…
Write a query to show the student name and email for the student with a student
Write a query to show the student name and email for the student with a student number of 111223333. Write a query to list all students with a GPA of 3.0 or higher. The GPA is the…
Write a query using JOINS to list the last name,first name and OrderID for every
Write a query using JOINS to list the last name,first name and OrderID for every customer who currently has an order for any product with IPOD in the description. (TCO 7) Write a …
Write a query using JOINS to list the orderid, partid, and part description and
Write a query using JOINS to list the orderid, partid, and part description and units on hand or every order that has not shipped. SalesRep Customer PK ReplD int varchar(20) varch…
Write a query which shows which employee has had the most jobs with the company.
Write a query which shows which employee has had the most jobs with the company. There may be multiple employees with the biggest job count. Show the surname,forename, and the job…
Write a queue class that fixes these weaknesses. The only instance variables sho
Write a queue class that fixes these weaknesses. The only instance variables should be queArray[], front, and rear. Initially, and any time the queue becomes empty, your code must…
Write a queuing simulation for a small airport which has only one runway. Airpla
Write a queuing simulation for a small airport which has only one runway. Airplanes waiting to take off join a queue on the ground. Airplanes waiting to land join a queue in the a…
Write a random number generator function “ rand_integer” that returns a random i
Write a random number generator function “ rand_integer” that returns a random integer between -10 and 10. To test this function, declare a function Array named “rand_array with a…
Write a rate law for this reaction and calculate the value of the rate constant
Write a rate law for this reaction and calculate the value of the rate constant k with correct unit symbols Some measurements of the initial rate of a certain reaction are given i…
Write a rational number class. For now, we will use member functions add, sub, m
Write a rational number class. For now, we will use member functions add, sub, mul, div and less that each carry out the operations +, -, *, /, and <. For example , a+b will be…
Write a rational number class. This problem will be revisited in chapter 11, whe
Write a rational number class. This problem will be revisited in chapter 11, where operate overloading will make the problem much easier. For now we will use member functions add,…
Write a rational number class. This problem will be revistied in chapeter 11, wh
Write a rational number class. This problem will be revistied in chapeter 11, where operator overloading will make the problem much easier. For now we will use member functions ad…
Write a rebuttal essay to Donald Trump on racism. Think : Brainstorm topic ideas
Write a rebuttal essay to Donald Trump on racism. Think: Brainstorm topic ideas that interest and affect you, and potentially affect your community and beyond. Then find a specifi…
Write a recognition letter (Goodwill Message) magine that you are the manager at
Write a recognition letter (Goodwill Message) magine that you are the manager at Honda Cars. Abdullah, one of the sales associates who reports to you, has a reputation of going ab…
Write a recurrence relation describing the worst case running time of each of th
Write a recurrence relation describing the worst case running time of each of the ms and determine the asymptotic complexity of the function defined by the recurrence relation. Ju…
Write a recurrence relation describing the worst case running time of the follow
Write a recurrence relation describing the worst case running time of the following algorithm and determine the asymptotic complexity of the function defined by the recurrence rel…
Write a recursive , linear/sequential search that takes advantage of an array be
Write a recursive, linear/sequential search that takes advantage of an array being sorted. Optimize by stopping the search either if you reach the end of the array or you know tha…
Write a recursive ARM assembly program that calculates the number of stones in a
Write a recursive ARM assembly program that calculates the number of stones in a ten-level ziggurat. Hobbies, Again I enjoy building stone ziggurats in my backyard. To build an N-…
Write a recursive Ce program to sobve thefollowing problem : Problem 4a P(1) 3 P
Write a recursive Ce program to sobve thefollowing problem : Problem 4a P(1) 3 P(2) = 4 P(n) P(n-1)+P(n-2) for n>2 To test-output for P(4)-11 P(6) 29 and P(7)-47 Hint: main sha…
Write a recursive MARS program that can compute the value of an expression in pa
Write a recursive MARS program that can compute the value of an expression in parentheses. The program should accept an input string, sequentially examine each character, invoke t…
Write a recursive MIPS program that compute x to the power y, that is, xv Write
Write a recursive MIPS program that compute x to the power y, that is, xv Write your recursive function in Java and show how you make the call from main(). For example, in main() …
Write a recursive MIPS program that compute x to the power y, that is, xy Write
Write a recursive MIPS program that compute x to the power y, that is, xy Write your recursive function in Java and show how you make the call from main(). For example, in main() …
Write a recursive MIPS program that compute x to the power y, that is, xy Write
Write a recursive MIPS program that compute x to the power y, that is, xy Write your recursive function in Java and show how you make the call from main(). For example, in main() …