Click here to Skip to main content
15,901,205 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
This is my stored procedure i want to generate report in rdlc for this stored procedure I have never done a reporting module before plz help thx

SQL
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
ALTER procedure [dbo].[salarycount]
as
begin

select sum(astatus) * e.Dailwages as PayAmount, e.EmpName,e.EmpSalary
from TblEmpDetails e ,Attendance a
where e.EmpId = a.EmpId
group by EmpName,EmpSalary,Dailwages
end
Posted

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900