AWS- Data in the Table - First Cloud Journey

Описание к видео AWS- Data in the Table - First Cloud Journey

Note: For the convenience of testing, you can copy the query commands. Replace our data table with your respective table name. For each command, we just need to copy it into the query window and then click the Run button.

Data in the Table
We perform the query data 10 records do not overlap located in the table line_item_line_item_description
SELECT distinct "line_item_line_item_description"
FROM "costmaster"."monthly_report"
LIMIT 10;
Select Run
Data in the table

Result after query
Data in the table

Do a query 10 records where the column value line_item_line_item_type is Usage
SELECT * FROM "costmaster"."monthly_report"
WHERE "line_item_line_item_type" like '%Usage%'
LIMIT 10;
Data in the table

Query results returned
Data in the table

Show duplicate payment times in the datasheet
SELECT distinct bill_billing_period_start_date
FROM "costmaster"."monthly_report"
LIMIT 10;
Data in the table

Query results returned. Monthly payment results.

Комментарии

Информация по комментариям в разработке