09/03/2005, 14:07
|
| | | Fecha de Ingreso: diciembre-2002 Ubicación: Chapinlandia :-D
Mensajes: 725
Antigüedad: 22 años, 1 mes Puntos: 11 | |
CREATE Procedure Personas_Insertar
@PENIFPer char(9),
@PEApe1 char(30),
@PEApe2 char(30),
@PECodPrf int,
AS
Insert Into Persones(
PENIFPer,
PEApe1,
PEApe2,
PECodPrf
)
Values(
@PENIFPer,
@PEApe1,
@PEApe2,
case @PECodPrf when 0 then null else @PECodPrf END
) |