Subject | Re: [ib-support] Error: "No current record for fetch operation" |
---|---|
Author | Martijn Tonies |
Post date | 2002-08-29T06:25:03Z |
Hi,
(FROM clause and JOIN clause)
Martijn Tonies
InterBase Workbench - the developer tool for InterBase and Firebird
http://www.interbaseworkbench.com
Upscene Productions
http://www.upscene.com
"This is an object-oriented system.
If we change anything, the users object."
> I just created this view:=
>
> CREATE VIEW Z_ELEMUSUARIO_V(
> OID_ELEMUSUARIO,
> OID_ELEMGRUPO,
> OID_GRUPO_USUARIO,
> NOMBRE)
> AS
> SELECT Z_ELEMUSUARIO.OID_ELEMUSUARIO,
> Z_ELEMUSUARIO.OID_ELEMGRUPO,
> Z_ELEMUSUARIO.OID_USUARIO_GRUPO,
> Z_GRUPOUSUARIOS_V.NOMBRE
> FROM Z_ELEMUSUARIO, Z_GRUPOUSUARIOS_V
> left join Z_GRUPOUSUARIOS_V on ( Z_GRUPOUSUARIOS_V.OID_USUARIO_GRUPO
> Z_ELEMUSUARIO.OID_USUARIO_GRUPO);Why are you listing table Z_GRUPOUSUARIOS_V twice here?
(FROM clause and JOIN clause)
Martijn Tonies
InterBase Workbench - the developer tool for InterBase and Firebird
http://www.interbaseworkbench.com
Upscene Productions
http://www.upscene.com
"This is an object-oriented system.
If we change anything, the users object."