11/07/2006, 08:30
|
| Colaborador | | Fecha de Ingreso: diciembre-2004
Mensajes: 1.802
Antigüedad: 20 años Puntos: 38 | |
algo asi?
Código:
Declare @tmpLetras table (letra char(1))
Declare @tmpResumen table(Resumen varchar(8000) )
Set nocount On
Declare @contador int,
@strLetras varchar(5000)
Set @contador = 65 -- 'A'
Set @strLetras = ''
--Insertar las letras en tabla
While @contador <91
Begin
Insert into @tmpLetras values (char(@contador))
Set @contador = @Contador + 1
End
Select @strLetras = @strLetras + letra from @tmpLetras
Set @strLetras = ltrim(rtrim(@strLetras))
If len(@strLetras) > 0
Begin
print 'Cadena insertada = ' + @strLetras
insert into @tmpResumen values (@strLetras)
End
Select letra from @tmpLetras
Select resumen from @tmpResumen
Set nocount Off
El resultado :
Código:
Cadena insertada = ABCDEFGHIJKLMNOPQRSTUVWXYZ
letra
-----
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
resumen
------------------------------
ABCDEFGHIJKLMNOPQRSTUVWXYZ
|