Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Which of the follow query can be used to list the name of the suppliers whose address contains Gilbert , and the ID of the

Which of the follow query can be used to list the name of the suppliers whose address contains Gilbert, and the ID of the procurement orders that are placed to such suppliers?
Select t1.Supplier_Name, t2.P_Order_ID
From Supplier t1,
Procurement_Order t2
Where t1.Supplier_ID=t2.Supplier_ID
And t1.Supplier_Address like _Gilbert_;
Select t1.Supplier_Name, t2.P_Order_ID
From Supplier t1,
Procurement_Order t2
Where t1.Supplier_ID=t2.Supplier_ID
And t1.Supplier_Address like %Gilbert%;
Select t1.Supplier_Name, t2.P_Order_ID
From Supplier t1,
Procurement_Order t2
Where t1.Supplier_ID=t2.Supplier_ID
And t1.Supplier_Address =%Gilbert%;
Select t1.Supplier_Name, t2.P_Order_ID
From Supplier t1,
Procurement_Order t2
Where t1.Supplier_ID=t2.Supplier_ID
And t1.Supplier_Address =_Gilbert_;

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Big Data Concepts, Theories, And Applications

Authors: Shui Yu, Song Guo

1st Edition

3319277634, 9783319277639

More Books

Students also viewed these Databases questions

Question

List the advantages and disadvantages of the pay programs. page 536

Answered: 1 week ago