Domanda

C'è un database Postgres scaricabile che contiene dati fittizi? preferibilmente Northwind, qualcosa che posso praticare il mio idee di query

È stato utile?

Soluzione

Ci sono una serie di database di esempio disponibili come progetto pgFoundry a http://pgfoundry.org/projects / dbsamples /

Altri suggerimenti

sono stato in grado di scaricare il database Northwind (per PostgreSQL) da

http://www.antepedia.com/detail/p/48023267.html

specificamente

[deprecato: http://northwindextended.googlecode.com/files/northwind.postgre.sql ]

[aggiornamento: Oct 2016:] https://code.google.com/archive/p/northwindextended/downloads

Caricamento / accesso al database:

sudo -u postgres psql     ## or: sudo su postgres

postgres=# \i northwind.postgre.sql;

postgres=# \d
                List of relations
 Schema |         Name         | Type  |  Owner   
--------+----------------------+-------+----------
 public | categories           | table | postgres
 public | customercustomerdemo | table | postgres
 public | customerdemographics | table | postgres
 public | customers            | table | postgres
 public | employees            | table | postgres
 public | employeeterritories  | table | postgres
 public | order_details        | table | postgres
 public | orders               | table | postgres
 public | products             | table | postgres
 public | region               | table | postgres
 public | shippers             | table | postgres
 public | shippers_tmp         | table | postgres
 public | suppliers            | table | postgres
 public | territories          | table | postgres
 public | usstates             | table | postgres
(15 rows)

postgres=# \d customers;
             Table "public.customers"
    Column    |         Type          | Modifiers 
--------------+-----------------------+-----------
 CustomerID   | bpchar                | not null
 CompanyName  | character varying(40) | not null
 ContactName  | character varying(30) | 
 ContactTitle | character varying(30) | 
 Address      | character varying(60) | 
 City         | character varying(15) | 
 Region       | character varying(15) | 
 PostalCode   | character varying(10) | 
 Country      | character varying(15) | 
 Phone        | character varying(24) | 
 Fax          | character varying(24) | 
Indexes:
    "pk_customers" PRIMARY KEY, btree ("CustomerID")

# Note the following query error:

postgres=# SELECT DISTINCT City FROM customers ORDER BY City;
ERROR:  column "city" does not exist
LINE 1: SELECT DISTINCT City FROM customers ORDER BY City;
                        ^

# ... use use double-quotes if your column name
# (etc.) contains some uppercase characters:

postgres=# SELECT DISTINCT "City" FROM customers ORDER BY "City";
      City       
-----------------
 Aachen
 Albuquerque
 Anchorage
 Århus
 Barcelona
 [ ... snip! ... ]
 Tsawassen
 Vancouver
 Versailles
 Walla Walla
 Warszawa

Questo database viene utilizzato (per esempio) in questo eccellente, esercitazione in linea (ho saltato avanti alcune pagine, la prima pagina che lo cita):

http://www.w3schools.com/sql/sql_syntax.asp

Le altre due risposte sembra essere superata.

È possibile ottenere northwind script di creazione db da questo link

Esegui interrogazione utilizzando PG di amministrazione o il comando psql

Se si vuole veramente che specifico, si può afferrare una porta di PostgreSQL di Northwind dal set di dati unit test DbLinq. Vedere http://groups.google.com/group/dblinq/web/unit -test per le note un po 'abbozzato su come farlo.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top