When the email was sent as a group email
Answer:
The answer to this question is given below in the explanation section
Explanation:
Bulleted and Numbered List button appear in the <u>Paragraph </u>Toolbar.
On word processing software, these options display in paragraph toolbar in the Home ribbon.
for example, in MS Word, you can find them in the Home tab under paragraph groups of command.
however, it is noted that these options are appear in some other software under the formating toolbar.
Answer: A. Help her distinguish between main topics and subtopics.
Explanation: APEX
B.) is what most employers are looking for
Answer:
Customer Table
- Customer name
- Customer id
Product Table
- Product id/number (primary key, auto increment)
- Product name
- Product sale price
Transactions Table
- Transaction Id
- Customer Id
- Product id
- Quantity
- Price
- Date
Explanation:
Natalie wants to fetch following information from database
- Look up customer name and sale price
- Sort items in db by product number
To lookup customer name and sale price perform a join on Transactions table and Customer table.Assuming database is build in mysql the query to fetch required results would be
select transction.productId,transaction.customerid,customer.customername from transactions join customer ON
customer.customerid=transcation.customerid
where productid="user provided product id of returned product"
For sorting products by number set produc number in product table a auto increment primary key