From: | Sergio Valdes Hurtado <svh(dot)pgsql(at)gmail(dot)com> |
---|---|
To: | Lista PostgreSql <pgsql-es-ayuda(at)postgresql(dot)org> |
Subject: | Reformula pregunta |
Date: | 2005-12-09 19:04:59 |
Message-ID: | 9032d01f0512091104v243347d9l@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
Estimados,
quiero replantear la pregunta que hice hace unos momentos atrás.
Tomando como ejemplo la siguiente tabla:
CREATE TABLE notas_alumno (
id_alumno int8 NOT NULL,
id_asignatura int4 NOT NULL,
test1 int2,
test2 int2,
test3 int2,
test4 int2,
test5 int2,
test6 int2,
CONSTRAINT pk_notas_alumnos PRIMARY KEY (id_alumno, id_asignatura)
)
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.
Un ejemplo sencillo: select * from notas_alumno where 3 > 85;
en este ejemplo el valor 3 correspondería al campo test1 que es el que
se encuentra en la tercera posición.
¿Es posible hacer algo así?
Gracias a todos
From | Date | Subject | |
---|---|---|---|
Next Message | Hector Latapiat | 2005-12-09 19:10:00 | RE: OLAP-CUBE-OLTP |
Previous Message | Ing. Jhon Carrillo // Caracas, Venezuela | 2005-12-09 17:55:29 | Re: OLAP-CUBE-OLTP |