logo

Crowdly

Browser

Додати до Chrome

DataBase Fundamentals new

Шукаєте відповіді та рішення тестів для DataBase Fundamentals new? Перегляньте нашу велику колекцію перевірених відповідей для DataBase Fundamentals new в softserve.academy.

Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!

What is the purpose of SQL roles?

Переглянути це питання

What is the purpose of transaction logs in PostgreSQL?

Переглянути це питання

What is view materialization in PostgreSQL?

0%
0%
0%
0%
Переглянути це питання

Which of the following is an advantage of using views in PostgreSQL?

Переглянути це питання

Suppose you have a PostgreSQL database that contains a table named sales, which contains information about sales transactions. The sales table has columns for the date of the transaction, the name of the salesperson, the product sold, and the amount of the sale. You want to create a grouped view that shows the total sales amount for each salesperson and product combination.

Example of the sales table:

sale_datesalespersonproductsale_amount
2022-03-01John SmithProduct A100.00
2022-03-01Jane DoeProduct B75.00
2022-03-02John SmithProduct C50.00
2022-03-03Bob JohnsonProduct A25.00
2022-03-03Jane DoeProduct B150.00

Which of the following CREATE VIEW statements would accomplish this?

Переглянути це питання

Suppose you have two tables in a PostgreSQL database, customers and orders, with the following data:

customers table:

customer_idcustomer_nameaddresscity
1John Smith123 Main St.Anytown
2Jane Doe456 Oak St.Other town
3Bob Johnson789 Maple Ave.Another town

orders table:

order_idcustomer_idorder_datetotal_amount
112022-03-01150.00
222022-03-0275.00
312022-03-0325.00
432022-03-0450.00

Which of the following CREATE VIEW statements would create a vertical view that displays the customer name, order ID, and total amount for all orders?

Переглянути це питання

Suppose you have a PostgreSQL database that contains three tables, orders, order_details and customers. The orders table contains basic information about each order, including the order ID and customer ID, customers table contains information about customer, while the order_details table contains the details of each order, including the product ID, quantity, and price. You want to create a view that shows the order ID, customer name, product name, quantity, and price for all orders.

Example of the orders table:

order_idcustomer_idorder_date
112022-03-01
222022-03-02
312022-03-03
432022-03-04

Example of the order_details table:

order_idproduct_idquantityprice
11310.00
22515.00
13220.00
4118.50

Example of the customers table:

customer_idcustomer_namecity
1Laurence Lebihan

London
2Diego Roel

Madrid

Which of the following CREATE VIEW statements would accomplish this?

0%
0%
0%
0%
Переглянути це питання

Suppose you have two tables in a PostgreSQL database, orders and products. You want to create a view that shows the order ID, product name, and quantity for all orders that include a particular product. Which of the following CREATE VIEW statements would accomplish this?

Table Example:

orders table:

| order_id | product_id | quantity |

|----------|------------|----------|

| 1        | 1          | 3        |

| 2        | 2          | 5        |

| 3        | 1          | 2        |

| 4        | 3          | 1        |

products table:

| id | product_name |

|----|--------------|

| 1  | Widget A     |

| 2  | Widget B     |

| 3  | Widget C     |

0%
0%
0%
0%
Переглянути це питання

What is the difference between a regular view and a materialized view in PostgreSQL?

Переглянути це питання

What is the benefit of using materialized (indexed) views?

Переглянути це питання

Хочете миттєвий доступ до всіх перевірених відповідей на softserve.academy?

Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!

Browser

Додати до Chrome