Postgresqlチュートリアルファイル

Postgresqlチュートリアルファイル

これに似ています:https://stackoverflow.com/questions/23136670/where-can-i-find-tutorial-files-of-postgresql

しかし、SQLチュートリアルを始めるためにsrc / tutorialフォルダを見つけようとしており、正しいディストリビューションをダウンロードしたことがわかります。

showを使用すると、apt list --installed次のパッケージがあります。

postgresql-10
postgresql-client-10
postgresql-client-common
postgresql-common
postgresql-server-dev-10

このコマンドを使用すると、sudo find . -type d -name "tutorial「tutorial」の「src」サブディレクトリにあるフォルダは返されません。 (ルートディレクトリでこのコマンドを実行します)

チュートリアルをどこから始めるべきかについてアドバイスを提供できる人はいますか?

ここから追加パッケージを入手してください。https://wiki.postgresql.org/wiki/Compile_and_Install_from_source_code

ベストアンサー1

私のDebian "Buster"インストールでは、チュートリアルはパッケージに含まれていますpostgresql-doc

 sudo apt-get install postgresql-doc

チュートリアルは次のディレクトリにインストールされます。

/usr/share/doc/postgresql-doc-10/tutorial

私はpostgresql-10を実行しているので、ドキュメントがインストールされているバージョンと一致します。

~からミントDebianベースなので、パッケージとファイルの場所が同じである可能性が高いです。以下は「apt-cache」のパッケージ情報です。

$ apt-cache show postgresql-doc

Package: postgresql-doc
Source: postgresql-common (190)
Version: 10+190
Installed-Size: 62
Maintainer: Debian PostgreSQL Maintainers <[email protected]>
Architecture: all
Depends: postgresql-doc-10
Description-en: documentation for the PostgreSQL database management system
 This metapackage always depends on the currently supported PostgreSQL database documentation package.
.
 PostgreSQL is a fully featured object-relational database management
 system.  It supports a large part of the SQL standard and is designed
 to be extensible by users in many aspects.  Some of the features are:
 ACID transactions, foreign keys, views, sequences, subqueries,
 triggers, user-defined types and functions, outer joins, multiversion
 concurrency control.  Graphical user interfaces and bindings for many
 programming languages are available as well.

注:

build-essentialチュートリアルプログラムをコンパイルするには、このパッケージをインストールする必要があります。

おすすめ記事