Re: Reformula pregunta

From: Sergio Valdes Hurtado <svh(dot)pgsql(at)gmail(dot)com>
To: Sergio Valdes Hurtado <svh(dot)pgsql(at)gmail(dot)com>, Lista PostgreSql <pgsql-es-ayuda(at)postgresql(dot)org>
Subject: Re: Reformula pregunta
Date: 2005-12-12 15:01:55
Message-ID: 9032d01f0512120701p35507c30s@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

Gracias alvaro por tu ayuda, voy a probar con lo que me dices.

Atte.

Sergio Valdés

El 9/12/05, Alvaro Herrera<alvherre(at)commandprompt(dot)com> escribió:
> Sergio Valdes Hurtado escribió:
>
> > Es posible leer un registro y luego extraer datos desde los distintos
> > campos del registro, pero no usando el nombre del campo, sino que su
> > posición.
>
> Claro! Es muy sencillo, solo tienes que normalizar la tabla.
>
> create table notas_alumno (
> id_alumno int8 not null references alumnos,
> id_asignatura int4 not null references asignaturas,
> num_test int2 not null,
> nota int2 not null,
> primary key (id_alumno, id_asignatura, num_test)
> );
>
> select * from notas_alumno where num_test = 3 and nota > 85;
>
> --
> Alvaro Herrera http://www.CommandPrompt.com/
> The PostgreSQL Company - Command Prompt, Inc.
>

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Sergio Valdes Hurtado 2005-12-12 15:02:43 Re: Reformula pregunta
Previous Message Mario Gonzalez 2005-12-12 15:01:19 Re: Comandos del usuario postgres