Question

Which of the following queries contains a non-equality join? a. SELECT title, authorid FROM books, bookauthor...

Which of the following queries contains a non-equality join?
a. SELECT title, authorid
FROM books, bookauthor
WHERE books.isbn = bookauthor.isbn
AND retail > 20;

b. SELECT title, name
FROM books JOIN publisher
USING (pubid);
c. SELECT title, gift
FROM books, promotion
WHERE retail >= minretail
AND retail <= maxretail;
d. none of the above

0 0
Add a comment Improve this question Transcribed image text
Answer #1

c. SELECT title, gift
FROM books, promotion
WHERE retail >= minretail
AND retail <= maxretail;

Explanation:

Non Equi Joins is a joins which contains an operator other than ‘=’ in the join condition

in A option  contains = in where clause and B options contains join, so both are omitted as non-equi joins.

Add a comment
Know the answer?
Add Answer to:
Which of the following queries contains a non-equality join? a. SELECT title, authorid FROM books, bookauthor...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Please help me on the SQL queries, thank you so much. Write a query to display the title and publisher as well as the p...

    Please help me on the SQL queries, thank you so much. Write a query to display the title and publisher as well as the publisher contact for each book using JOIN...USING clause. Write a query to show the first and last names of customers who have ordered cooking books. Use the WHERE clause to join the tables. Write a query to show the title, cost and ISBN of each book in the books table. If the book has been ordered,...

  • create table books (title text primary key,pubdate text,publisher text,publishercity text,scope text); create table publishers (publisherName text,founded...

    create table books (title text primary key,pubdate text,publisher text,publishercity text,scope text); create table publishers (publisherName text,founded date,founderName text[],headquarters text); insert into books values ('the gremlins', 1943, 'random house', 'new york', 'children'), ('sometime never: a fable for supermen', 1948, 'charles scribner''s sons', 'new york', 'adult'), ('james and the giant peach', 1961, 'alfred a. knopf', 'new york', 'children'), ('charlie and the chocolate factory', 1964, 'alfred a. knopf', 'new york', 'children') insert into publishers(publisherName, founded, founderName, headquarters) values ('random house', 'Jan 1, 1927',...

  • Write the following SQL statements in Microsoft Access by using the Books database from Week 2...

    Write the following SQL statements in Microsoft Access by using the Books database from Week 2 Assignment 2. Once complete, copy and paste the SQL statements in a Microsoft Word document: Write SQL statements: To update the publisher name from READ WITH US to READ FOR US To verify the updated name field for the publisher with ID 6 To make the following updates to the Publisher table (be careful with WHERE): Make Contact="John Travolta" for publisher with ID number...

  • Given the following schema books(id,title,pub_year,pages,isbn), what is the SQL statement needed to find all the books...

    Given the following schema books(id,title,pub_year,pages,isbn), what is the SQL statement needed to find all the books published in the year 2002? a)SELECT pub_year = 2002 in books; b) SELECT ALL in books WHERE pub_year = 2002; C) SELECT * FROM books WHERE (pub_year,2002); D) SELECT * FROM books WHERE pub_year = 2002;

  • In using a database created from this model, which of the following SQL queries would give...

    In using a database created from this model, which of the following SQL queries would give us a list of customers who have daily deposit transactions (deposit is a transaction type) totaling $10,000 or more across all of their accounts (i.e., this is a total across all accounts of a customer, not per account). Include in this list the Customer ID and name, and the dates and their respective daily total. SELECT c.cust_id, c.cust_name, DATE(t.tran_date), SUM(t.tran_amount) AS daily_total FROM Customers...

  • Which of the following queries on table STUDENT will return three values as a result? STUDENT...

    Which of the following queries on table STUDENT will return three values as a result? STUDENT Observe the table STUDENT: STUDENT StudentID        SSN                  Name           Class D111              111-11-1111         Connor       Freshman D222              222-22-2222         Trevor         Freshman D333              333-33-3333         Connor       Sophomore D444              444-44-4444         Parker         Sophomore D555              555-55-5555         Connor       Sophomore Select one: a. SELECT name FROM student; b. SELECT class FROM student; c. SELECT DISTINCT name FROM student; d. SELECT name FROM student WHERE class != 'Sophomore';

  • Which of the following options can you select in the Join Properties dialog box when you...

    Which of the following options can you select in the Join Properties dialog box when you edit the relationship the Country and Code tables? Select all answers that apply: A only include rows where the joined fields from both tables are equal. □ B. Include ALL records from . country. □ C. Include ALL records from 'code'. D. Include ALL records from 'Country' and only those records from Code' where the joined fields are equal. □E. Include ALL records from...

  • Which of the following is not contained in the heading for an income statement? Select one:...

    Which of the following is not contained in the heading for an income statement? Select one: A. The name of the company B. The time period (for example, a month, quarter, or year) covered by the income statement C. The title of the financial statement (that is, income statement) D. The date (a single day) of the income statement E. None of the above

  • Which of the following is not contained in the heading for an income statement? Select one:...

    Which of the following is not contained in the heading for an income statement? Select one: A. The name of the company B. The time period (for example, a month, quarter, or year) covered by the income statement C. The title of the financial statement (that is, income statement) D. The date (a single day) of the income statement E. None of the above

  • 1. In javascript, you type the following into the console: document.querySelector(".main-title").innerHTML you would expect to see...

    1. In javascript, you type the following into the console: document.querySelector(".main-title").innerHTML you would expect to see something like this... a..main-title { text-size: 1em; } b."Welcome to my Homepage" c."<h2 class="main-title">Welcome to my Homepage</h2>" d.DOMTokenList[] 2.SELECT SUM(_________) FROM customers; What could go in the blank?   a)a row name b)a table name c)a column name d) an aggregate function's name 3.Choose the best answer: When we join orders and customers, we join on customer_id, which is a(n) ____________ in orders and the...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT