Answered step by step
Verified Expert Solution
Question
1 Approved Answer
customer (cid, name, email, dob) ordr (oid, cid, tim) ordritem(oid, pid, qty) product (pid, name, price) It's a schema for a store: customer table has
customer (cid, name, email, dob) ordr (oid, cid, tim) ordritem(oid, pid, qty) product (pid, name, price) It's a schema for a store: customer table has customer information, ordr has order information (links to customer via cad), and ordritem (inks to ordr via old) has order line-iters and quantity and link to products via pid. 1. Find customer id of John Doc. (a) select cid from customer where name=' John Doe' (b) select name from customer where fname=' John' and Iname='Doe' (c) select * from customer where name=' John Doe' (d) select cid from customer where fname= John' and Iname='Doe' (e) Other
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started