From 5e45211a64149b3c659b90ff2de6fa982a5a93ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:17:33 +0200 Subject: Adding upstream version 15.5. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/tutorial-sql-intro.html | 43 +++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 doc/src/sgml/html/tutorial-sql-intro.html (limited to 'doc/src/sgml/html/tutorial-sql-intro.html') diff --git a/doc/src/sgml/html/tutorial-sql-intro.html b/doc/src/sgml/html/tutorial-sql-intro.html new file mode 100644 index 0000000..bf49142 --- /dev/null +++ b/doc/src/sgml/html/tutorial-sql-intro.html @@ -0,0 +1,43 @@ + +2.1. Introduction

2.1. Introduction

+ This chapter provides an overview of how to use + SQL to perform simple operations. This + tutorial is only intended to give you an introduction and is in no + way a complete tutorial on SQL. Numerous books + have been written on SQL, including [melt93] and [date97]. + You should be aware that some PostgreSQL + language features are extensions to the standard. +

+ In the examples that follow, we assume that you have created a + database named mydb, as described in the previous + chapter, and have been able to start psql. +

+ Examples in this manual can also be found in the + PostgreSQL source distribution + in the directory src/tutorial/. (Binary + distributions of PostgreSQL might not + provide those files.) To use those + files, first change to that directory and run make: + +

+$ cd .../src/tutorial
+$ make
+

+ + This creates the scripts and compiles the C files containing user-defined + functions and types. Then, to start the tutorial, do the following: + +

+$ psql -s mydb
+
+...
+
+mydb=> \i basics.sql
+

+ + The \i command reads in commands from the + specified file. psql's -s option puts you in + single step mode which pauses before sending each statement to the + server. The commands used in this section are in the file + basics.sql. +

\ No newline at end of file -- cgit v1.2.3