Viewing 3 posts - 1 through 4 (of 4 total)
Ok, im sorry, here is everything:
Table Definition: (nivel = skill , conocimiento = knowledge)
[EMPTBL_CONOCIMIENTOEMPLEADO]
[IDEmpleado] [int] NOT NULL,
[IDConocimiento] [int] NOT NULL,
[IDNivel] [int] NOT NULL,
[IDEMPCON] [int] IDENTITY(1,1) NOT NULL
[EMPTBL_EMPLEADOS]
[PNombre] [nvarchar](50) COLLATE Latin1_General_CI_AI...
March 24, 2009 at 11:33 am
If i understood what you are asking, here is the code
declare @idemp nvarchar(max) ,@onecell nvarchar(max);
declare curs cursor for
select FIELD from TABLE
open curs
fetch next from curs into @idemp;
set @onecell =...
March 24, 2009 at 11:13 am
Could you post the query you are using please?
March 24, 2009 at 10:49 am
Viewing 3 posts - 1 through 4 (of 4 total)