Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For the below questions, use the following schema definition. account ( accountid , username, firstname, lastname ) digitalasset ( assetid , description, dollarprice ) transaction

For the below questions, use the following schema definition. account (accountid, username, firstname, lastname) digitalasset (assetid, description, dollarprice) transaction (tranid, accountid, timstamp) transactiondetail (tranid, assetid,qty.price) It is a schema for a digital-asset store, with accounts, digitalassets, and transactions that link accounts to digitalassets. Each transaction can have multiple items, which are in transactiondetail table. Pick the best answer that fits the question. Not all of the answers may be correct. If none of the answers fit, write your own answer. 1.(5 points) Find account id of John Doe. (a) select lastname,firstname from account where firstname='John' and lastname='Doe' (b) select accountid from transaction where firstname='John' and lastname='Doe' (c) select accountid from account where firstname='John' and lastname='Doe' (d) select accountid from account inner join transactiondetail using(accountid) where first- name='John' and lastname='Doe' (e) Other:

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_2

Step: 3

blur-text-image_3

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

Time Series Databases New Ways To Store And Access Data

Authors: Ted Dunning, Ellen Friedman

1st Edition

1491914726, 978-1491914724

More Books

Students also viewed these Databases questions

Question

Describe how leadership styles should be adapted to the situation

Answered: 1 week ago

Question

What was the role of the team leader? How was he or she selected?

Answered: 1 week ago

Question

What were the issues and solutions proposed by each team?

Answered: 1 week ago