ALTER PROCEDURE [dbo].[GetLoginByIdentifyPasswordDOB]
-- Add the parameters for the stored procedure here
@Identify varchar(50) ,
@Password varchar(50) ,
@Date_Of_Birth Datetime
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
select * from Policy_Holder_Details where @Identify=@Password and Date_Of_Birth = @Date_Of_Birth
END
Here i m Pass @Identify as column name and in @Password as column value.
Piyush PansuriyaPosted Feb 28, 2018, 12:43 AM
Ayush PatilPosted Feb 28, 2018, 1:47 AM
sudipta sanyalPosted Feb 28, 2018, 1:42 AM
Ayush PatilPosted Feb 28, 2018, 1:39 AM
sudipta sanyalPosted Feb 28, 2018, 1:23 AM
Ayush PatilPosted Feb 28, 2018, 12:57 AM
Ayush PatilPosted Feb 28, 2018, 12:33 AM
Ayush PatilPosted Feb 28, 2018, 12:25 AM
Ayush PatilPosted Feb 28, 2018, 12:14 AM