[Pgsql-ayuda] Nuevo en Postrgresql

From: "carlos castro" <castor(at)vivirasturias(dot)com>
To: "Pgsql-Ayuda" <pgsql-ayuda(at)tlali(dot)iztacala(dot)unam(dot)mx>
Subject: [Pgsql-ayuda] Nuevo en Postrgresql
Date: 2003-11-12 11:57:10
Message-ID: NJELLIFBGLGFHCBCBAEGGEAACJAA.castor@vivirasturias.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

Hola a todos de nuevo:
Muchas gracias por todas las repuestas y consejos que me habeis dado , que
no caeran en saco roto.

Me sigue sin funcionar el tema de select * from ... asi que os mando una
prueba que he hecho y los resultados que me devuelve , a ver si esque estoy
haciendo algo mal. Muchas gracias a todos de antemano!

saludos!

[castor(at)socrates castor]$ psql prueba
Welcome to psql 7.3.2, the PostgreSQL interactive terminal
Type: \copyright for distribution terms
\h for help with SQL commands
\? for help on internal slash commands
\g or terminate with semicolon to execute query
\q to quit

prueba=> \d prueba
Did not find any relation named "prueba".
prueba=> CREATE TABLE lista (codigo integer , varchar(20));
ERROR: parser: parse error at or near "(" at character 45
prueba=> CREATE TABLE lista (codigo integer , nombre varchar(20));
CREATE TABLE prueba=> INSERT INTO lista values(12, 'kk');
INSERT
prueba=> INSERT INTO lista values(34, 'pp');
INSERT
prueba=> INSERT INTO lista values(45,'cc');
INSERT
prueba=> SELECT * from
prueba=> SELECT * from
prueba=> SELECT * from
prueba=> SELECT * from
prueba=> SELECT * from lista
prueba->
prueba=> SELECT * from lista;
SELECT
prueba=> \d lista
Did not find any relation named "lista"

Responses

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message GUSTAVO MARTIN OCAMPO 2003-11-12 12:05:06 Re: [Pgsql-ayuda] funciones...nuevamente
Previous Message Gunnar Wolf 2003-11-12 05:24:33 Re: [Pgsql-ayuda] ejemplos de Pl/PgSql