Código SQL:
Ver original
SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[loginusuario](@identificacion AS VARCHAR(50),@nombreusuario AS VARCHAR(50)) AS BEGIN SELECT id,nombre FROM dbo.usuario WHERE id=@identificacion AND nombre=@nombreusuario END