You must use the Access database and create queries that will answer the request
ID: 3725569 • Letter: Y
Question
You must use the Access database and create queries that will answer the requests below. You may use Query by Example (QBE) or direct SQL to create the queries. Store them using the number of the question (Q1, Q2, etc.).
Obtain the First Name, Initials and Last Name of all authors which last name begins with the letter ‘S’ and whose books were ordered by at least one customer. Avoid repetitions.
We're not using Join or Join In functions. Just SELECT, FROM, WHERE, ORDER BY, and SORT BY Thanks!
Book Wrote Author Authorid AuthornD FrstName nitials Category AuthorRank OrderLine Order Customer OrderNo OrderRank ISEN CustomerName CustomerAddress Stato OrderDeliveryCate Quanbty PercentageOiscountExplanation / Answer
Select distinct FirstName,Initials,LastName from Author,Wrote,Book,OrderLine,Order,Customer where LastName LIKE 's%' ;
Like operator is used to match the characters in the string
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.