Skip to content

Commit f798763

Browse files
committed
2 parents 32c2275 + b3f31cd commit f798763

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: Lesson01/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# SQL-for-Data-Analytics
1+
In Lesson 01, we will learn how to form hypotheses and generate descriptive statistics that can provide insight into your data. We will implement five exercises and two activities in this lesson to analyze and get insights of the data. There arenn't any code files in this lessons as most of the practical elements help us to undestand data analytics using Excel and a few datasets. We have used dealerships.csv, heights.csv, and auto_upgrades.csv datasets to perform these exericses and activities. These datasets can be found in the **Datasets** folder of this repository. Here is the link to these datasets: https://github.com/TrainingByPackt/SQL-for-Data-Analytics/tree/master/Datasets

Diff for: Lesson08/Activity17/Activity17.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ sqlda=# SELECT pid, query FROM pg_stat_activity WHERE state = 'active';
1212

1313
-- Using the pid value, force the sleep command to terminate using the pg_terminate_background command
1414

15-
Sqlda=# SELECT pg_terminate_backend(14131);
15+
sqlda=# SELECT pg_terminate_backend(14131);
1616

1717
-- Verify in the first terminal that the sleep command has been terminated. Notice the message returned by the interpreter
1818

19-
Sqlda=# SELECT pg_sleep(1000);
19+
sqlda=# SELECT pg_sleep(1000);
2020

0 commit comments

Comments
 (0)