Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
1.4. Accessing a Database
Prev UpChapter 1. Getting StartedHome Next

1.4. Accessing a Database#

Once you have created a database, you can access it by:

You probably want to start uppsql to try the examples in this tutorial. It can be activated for themydb database by typing the command:

$psql mydb

If you do not supply the database name then it will default to your user account name. You already discovered this scheme in the previous section usingcreatedb.

Inpsql, you will be greeted with the following message:

psql (17.5)Type "help" for help.mydb=>

The last line could also be:

mydb=#

That would mean you are a database superuser, which is most likely the case if you installed thePostgreSQL instance yourself. Being a superuser means that you are not subject to access controls. For the purposes of this tutorial that is not important.

If you encounter problems startingpsql then go back to the previous section. The diagnostics ofcreatedb andpsql are similar, and if the former worked the latter should work as well.

The last line printed out bypsql is the prompt, and it indicates thatpsql is listening to you and that you can typeSQL queries into a work space maintained bypsql. Try out these commands:

mydb=>SELECT version();                                         version-------------------------------------------------------------------​----------------------- PostgreSQL 17.5 on x86_64-pc-linux-gnu, compiled by gcc (Debian 4.9.2-10) 4.9.2, 64-bit(1 row)mydb=>SELECT current_date;    date------------ 2016-01-07(1 row)mydb=>SELECT 2 + 2; ?column?----------        4(1 row)

Thepsql program has a number of internal commands that are not SQL commands. They begin with the backslash character,\. For example, you can get help on the syntax of variousPostgreSQLSQL commands by typing:

mydb=>\h

To get out ofpsql, type:

mydb=>\q

andpsql will quit and return you to your command shell. (For more internal commands, type\? at thepsql prompt.) The full capabilities ofpsql are documented inpsql. In this tutorial we will not use these features explicitly, but you can use them yourself when it is helpful.


Prev Up Next
1.3. Creating a Database Home Chapter 2. TheSQL Language
pdfepub
Go to PostgreSQL 17
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp