diff --git a/01-select.html b/01-select.html index 457bb81e..d7afdd7d 100644 --- a/01-select.html +++ b/01-select.html @@ -872,7 +872,7 @@

Understanding CREATE statements

-
+

SQL @@ -910,7 +910,7 @@

Selecting Site Names

-
+

SQL diff --git a/02-sort-dup.html b/02-sort-dup.html index 4bfe60df..e93f10d9 100644 --- a/02-sort-dup.html +++ b/02-sort-dup.html @@ -694,7 +694,7 @@

Finding Distinct Dates

-
+

SQL @@ -731,7 +731,7 @@

Displaying Full Names

-
+

SQL diff --git a/04-calc.html b/04-calc.html index 251cdde1..6c6c74cf 100644 --- a/04-calc.html +++ b/04-calc.html @@ -480,7 +480,7 @@

Fixing Salinity Readings

-
+

SQL @@ -560,7 +560,7 @@

SQL -
+

SQL @@ -605,7 +605,7 @@

SQL -
+

SQL diff --git a/06-agg.html b/06-agg.html index b93f99a6..4e86f9ee 100644 --- a/06-agg.html +++ b/06-agg.html @@ -725,7 +725,7 @@

Counting Temperature Readings

-
+

SQL @@ -759,7 +759,7 @@

Averaging with NULL

-
+

The answer is 3.0. NULL is not a value; it is the absence of a value. As such it is not included in the calculation.

@@ -800,7 +800,7 @@

SQL -
+

The query produces only one row of results when we what we really want is a result for each of the readings. The avg() @@ -862,7 +862,7 @@

SQL -
+

List all the family names separated by a comma:

diff --git a/08-hygiene.html b/08-hygiene.html index 4400e407..766a5764 100644 --- a/08-hygiene.html +++ b/08-hygiene.html @@ -488,7 +488,7 @@

Identifying Atomic Values

-
+

New Zealand is the only clear-cut atomic value.

The address and the XY coordinate contain more than one piece of @@ -531,7 +531,7 @@

Identifying a Primary Key

-
+

Latitude, longitude, and date are all required to uniquely identify the temperature record.

diff --git a/09-create.html b/09-create.html index 6737eccd..35bcfcc5 100644 --- a/09-create.html +++ b/09-create.html @@ -571,7 +571,7 @@

Replacing NULL

-
+

SQL @@ -605,7 +605,7 @@

Backing Up with SQL

-
+

Advantages

diff --git a/10-prog.html b/10-prog.html index f43ac257..a1536c39 100644 --- a/10-prog.html +++ b/10-prog.html @@ -635,7 +635,7 @@

Filling a Table vs. Printing Values

-
+

PYTHON @@ -697,7 +697,7 @@

Filtering in SQL vs. Filtering in Python

-
+

The first example reads all the data into memory and filters the numbers using the if statement in Python.

diff --git a/aio.html b/aio.html index 809420ad..1f6dafea 100644 --- a/aio.html +++ b/aio.html @@ -1117,7 +1117,7 @@

Understanding CREATE statements

-
+

SQL @@ -1155,7 +1155,7 @@

Selecting Site Names

-
+

SQL @@ -1778,7 +1778,7 @@

Finding Distinct Dates

-
+

SQL @@ -1837,7 +1837,7 @@

Displaying Full Names

-
+

SQL @@ -2758,7 +2758,7 @@

Fixing Salinity Readings

-
+

SQL @@ -2880,7 +2880,7 @@

SQL -
+

SQL @@ -2937,7 +2937,7 @@

SQL -
+

SQL @@ -4027,7 +4027,7 @@

Counting Temperature Readings

-
+

SQL @@ -4067,7 +4067,7 @@

Averaging with NULL

-
+

The answer is 3.0. NULL is not a value; it is the absence of a value. As such it is not included in the calculation.

@@ -4108,7 +4108,7 @@

SQL -
+

The query produces only one row of results when we what we really want is a result for each of the readings. The avg() @@ -4170,7 +4170,7 @@

SQL -
+

List all the family names separated by a comma:

@@ -5389,7 +5389,7 @@

Identifying Atomic Values

-
+

New Zealand is the only clear-cut atomic value.

The address and the XY coordinate contain more than one piece of @@ -5440,7 +5440,7 @@

Identifying a Primary Key

-
+

Latitude, longitude, and date are all required to uniquely identify the temperature record.

@@ -5694,7 +5694,7 @@

Replacing NULL

-
+

SQL @@ -5728,7 +5728,7 @@

Backing Up with SQL

-
+

Advantages @@ -6055,7 +6055,7 @@

Filling a Table vs. Printing Values

-
+

PYTHON @@ -6117,7 +6117,7 @@

Filtering in SQL vs. Filtering in Python

-
+

The first example reads all the data into memory and filters the numbers using the if statement in Python.

diff --git a/instructor/01-select.html b/instructor/01-select.html index 2001bb8b..adc67704 100644 --- a/instructor/01-select.html +++ b/instructor/01-select.html @@ -874,7 +874,7 @@

Understanding CREATE statements

-
+

SQL @@ -912,7 +912,7 @@

Selecting Site Names

-
+

SQL diff --git a/instructor/02-sort-dup.html b/instructor/02-sort-dup.html index a7b6d5cc..489fa0db 100644 --- a/instructor/02-sort-dup.html +++ b/instructor/02-sort-dup.html @@ -696,7 +696,7 @@

Finding Distinct Dates

-
+

SQL @@ -733,7 +733,7 @@

Displaying Full Names

-
+

SQL diff --git a/instructor/04-calc.html b/instructor/04-calc.html index 932129bc..833a0224 100644 --- a/instructor/04-calc.html +++ b/instructor/04-calc.html @@ -482,7 +482,7 @@

Fixing Salinity Readings

-
+

SQL @@ -562,7 +562,7 @@

SQL -
+

SQL @@ -607,7 +607,7 @@

SQL -
+

SQL diff --git a/instructor/06-agg.html b/instructor/06-agg.html index 1169627a..1c74441e 100644 --- a/instructor/06-agg.html +++ b/instructor/06-agg.html @@ -727,7 +727,7 @@

Counting Temperature Readings

-
+

SQL @@ -761,7 +761,7 @@

Averaging with NULL

-
+

The answer is 3.0. NULL is not a value; it is the absence of a value. As such it is not included in the calculation.

@@ -802,7 +802,7 @@

SQL -
+

The query produces only one row of results when we what we really want is a result for each of the readings. The avg() @@ -864,7 +864,7 @@

SQL -
+

List all the family names separated by a comma:

diff --git a/instructor/08-hygiene.html b/instructor/08-hygiene.html index 3e1885f7..a5583fac 100644 --- a/instructor/08-hygiene.html +++ b/instructor/08-hygiene.html @@ -490,7 +490,7 @@

Identifying Atomic Values

-
+

New Zealand is the only clear-cut atomic value.

The address and the XY coordinate contain more than one piece of @@ -533,7 +533,7 @@

Identifying a Primary Key

-
+

Latitude, longitude, and date are all required to uniquely identify the temperature record.

diff --git a/instructor/09-create.html b/instructor/09-create.html index 0a59adde..1d4137f3 100644 --- a/instructor/09-create.html +++ b/instructor/09-create.html @@ -573,7 +573,7 @@

Replacing NULL

-
+

SQL @@ -607,7 +607,7 @@

Backing Up with SQL

-
+

Advantages

diff --git a/instructor/10-prog.html b/instructor/10-prog.html index 2dd364d8..8fe3cf6f 100644 --- a/instructor/10-prog.html +++ b/instructor/10-prog.html @@ -637,7 +637,7 @@

Filling a Table vs. Printing Values

-
+

PYTHON @@ -699,7 +699,7 @@

Filtering in SQL vs. Filtering in Python

-
+

The first example reads all the data into memory and filters the numbers using the if statement in Python.

diff --git a/instructor/aio.html b/instructor/aio.html index f84a0b3b..3c44ed71 100644 --- a/instructor/aio.html +++ b/instructor/aio.html @@ -1120,7 +1120,7 @@

Understanding CREATE statements

-
+

SQL @@ -1158,7 +1158,7 @@

Selecting Site Names

-
+

SQL @@ -1782,7 +1782,7 @@

Finding Distinct Dates

-
+

SQL @@ -1841,7 +1841,7 @@

Displaying Full Names

-
+

SQL @@ -2764,7 +2764,7 @@

Fixing Salinity Readings

-
+

SQL @@ -2886,7 +2886,7 @@

SQL -
+

SQL @@ -2943,7 +2943,7 @@

SQL -
+

SQL @@ -4035,7 +4035,7 @@

Counting Temperature Readings

-
+

SQL @@ -4075,7 +4075,7 @@

Averaging with NULL

-
+

The answer is 3.0. NULL is not a value; it is the absence of a value. As such it is not included in the calculation.

@@ -4116,7 +4116,7 @@

SQL -
+

The query produces only one row of results when we what we really want is a result for each of the readings. The avg() @@ -4178,7 +4178,7 @@

SQL -
+

List all the family names separated by a comma:

@@ -5399,7 +5399,7 @@

Identifying Atomic Values

-
+

New Zealand is the only clear-cut atomic value.

The address and the XY coordinate contain more than one piece of @@ -5450,7 +5450,7 @@

Identifying a Primary Key

-
+

Latitude, longitude, and date are all required to uniquely identify the temperature record.

@@ -5705,7 +5705,7 @@

Replacing NULL

-
+

SQL @@ -5739,7 +5739,7 @@

Backing Up with SQL

-
+

Advantages @@ -6067,7 +6067,7 @@

Filling a Table vs. Printing Values

-
+

PYTHON @@ -6129,7 +6129,7 @@

Filtering in SQL vs. Filtering in Python

-
+

The first example reads all the data into memory and filters the numbers using the if statement in Python.

diff --git a/pkgdown.yml b/pkgdown.yml index 5f99f6b4..0b36aaf6 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -2,4 +2,4 @@ pandoc: 3.1.11 pkgdown: 2.1.0 pkgdown_sha: ~ articles: {} -last_built: 2024-08-27T00:04Z +last_built: 2024-08-27T01:20Z