03/03/2006, 09:14
|
| | Fecha de Ingreso: noviembre-2005
Mensajes: 658
Antigüedad: 19 años, 2 meses Puntos: 3 | |
Puedes hacer eso asi :
CREATE PROCEDURE RegTemasServicios
@id bigint
AS
begin
SELECT Nombre, Bajada, Padre as img
FROM tema
WHERE (Padre = @id)
if @@rowcount = 0
SELECT Nombre, Bajada, ImagenPequena as img
FROM servicios
WHERE (idTema = @id)
end
end |