tutorial not accurate

Started by PG Bug reporting formalmost 2 years ago2 messagesdocs
Jump to latest
#1PG Bug reporting form
noreply@postgresql.org

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/16/tutorial-accessdb.html
Description:

I was able to create a db (mydb) but when I use any of the test SELECT
statements, nothing happens. Here is the terminal output when trying your
tutorial.

mydb=# SELECT version()
mydb-# SELECT current_date
mydb-# SELECT 2 + 2
mydb-# \q

#2Peter Eisentraut
peter_e@gmx.net
In reply to: PG Bug reporting form (#1)
Re: tutorial not accurate

On 02.07.24 22:00, PG Doc comments form wrote:

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/16/tutorial-accessdb.html
Description:

I was able to create a db (mydb) but when I use any of the test SELECT
statements, nothing happens. Here is the terminal output when trying your
tutorial.

mydb=# SELECT version()
mydb-# SELECT current_date
mydb-# SELECT 2 + 2
mydb-# \q

You forgot the semicolons at the end of each line. The tutorial does
contain those.