Question

PLease answer the question in SQL plus: vendor (vid, vendorname, address) mis (fedid, stateid, name, address) storerequest (requestno, storeno, date) vendorcatalog (vid, itemno) storerequestItem (requ...

PLease answer the question in SQL plus:

vendor (vid, vendorname, address)

mis (fedid, stateid, name, address)

storerequest (requestno, storeno, date)

vendorcatalog (vid, itemno)

storerequestItem (requestno, itemno, quantity)

inventory (itemno, location, quantity)

inventorydes (itemno, itemdescription, unitcost)

store (storeno, name, address, fedid, description)

List the store number and store name that has not put in an order during January 2019.

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

The required query is as follows, and if it gives syntax error appears then add a semicolon at the end of the query

SELECT storerequest.storeno, store.name
FROM storerequest
INNER JOIN store ON storerequest.storeno = store.storeno
where storerequest.date NOT BETWEEN '2019-01-01' AND '2019-01-31'

Add a comment
Know the answer?
Add Answer to:
PLease answer the question in SQL plus: vendor (vid, vendorname, address) mis (fedid, stateid, name, address) storerequest (requestno, storeno, date) vendorcatalog (vid, itemno) storerequestItem (requ...
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
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