File: tutorial-concepts.html

package info (click to toggle)
pgadmin3 1.4.3-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 29,796 kB
  • ctags: 10,758
  • sloc: cpp: 55,356; sh: 6,164; ansic: 1,520; makefile: 576; sql: 482; xml: 100; perl: 18
file content (53 lines) | stat: -rw-r--r-- 2,596 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>2.2.Concepts</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="tutorial-sql.html" title="Chapter2.The SQL Language">
<link rel="prev" href="tutorial-sql.html" title="Chapter2.The SQL Language">
<link rel="next" href="tutorial-table.html" title="2.3.Creating a New Table">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="sect1" lang="en">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="tutorial-concepts"></a>2.2.Concepts</h2></div></div></div>
<p>    <a name="id567862"></a>
    <a name="id567869"></a>
    <a name="id567877"></a>
    <a name="id567885"></a>
    <a name="id567893"></a>

    <span class="productname">PostgreSQL</span> is a <em class="firstterm">relational
    database management system</em> (<acronym class="acronym">RDBMS</acronym>).
    That means it is a system for managing data stored in
    <em class="firstterm">relations</em>.  Relation is essentially a
    mathematical term for <em class="firstterm">table</em>.  The notion of
    storing data in tables is so commonplace today that it might
    seem inherently obvious, but there are a number of other ways of
    organizing databases.  Files and directories on Unix-like
    operating systems form an example of a hierarchical database.  A
    more modern development is the object-oriented database.
   </p>
<p>    <a name="id567934"></a>
    <a name="id567941"></a>

    Each table is a named collection of <em class="firstterm">rows</em>.
    Each row of a given table has the same set of named
    <em class="firstterm">columns</em>,
    and each column is of a specific data type.  Whereas columns have
    a fixed order in each row, it is important to remember that SQL
    does not guarantee the order of the rows within the table in any
    way (although they can be explicitly sorted for display).
   </p>
<p>    <a name="id567961"></a>
    <a name="id567968"></a>

    Tables are grouped into databases, and a collection of databases
    managed by a single <span class="productname">PostgreSQL</span> server
    instance constitutes a database <em class="firstterm">cluster</em>.
   </p>
</div></body>
</html>