write a SQLqueries to answer the question 1 display the ve
write a \" SQL_queries \" to answer the question
1) display the vendors and the types of materials they supply, but only for those that supply wood .
write a \" SQL_queries \" to answer the question
1) display the vendors and the types of materials they supply, but only for those that supply wood .
1) display the vendors and the types of materials they supply, but only for those that supply wood .
Solution
Ans1- the query will be as follows
Select vendors, types of material
From Vendordescription ( VenderDescription is table name as table name is not given so i assumed )
Where types of material =\'wood\' ;
