From b452769f96c5be7e810101f830c22489861121e0 Mon Sep 17 00:00:00 2001 From: anthonydb Date: Mon, 16 Mar 2020 08:38:22 -0400 Subject: [PATCH] New Chapter 1 code --- Chapter_01/Chapter_01.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Chapter_01/Chapter_01.sql diff --git a/Chapter_01/Chapter_01.sql b/Chapter_01/Chapter_01.sql new file mode 100644 index 0000000..244965b --- /dev/null +++ b/Chapter_01/Chapter_01.sql @@ -0,0 +1,16 @@ +--------------------------------------------------------------------------- +-- Practical SQL: A Beginner's Guide to Storytelling with Data, 2nd Edition +-- by Anthony DeBarros + +-- Chapter 1 Code Examples +---------------------------------------------------------------------------- + +-- Listing 1-1: Checking your PostgreSQL version + +SELECT version(); + + + + + +