Viewing 4 posts - 1 through 4 (of 4 total)
IF OBJECT_ID('tempdb..#Results',N'U') IS NOT NULL
DROP TABLE #Results
SELECT st.Name, st.FatherName, st.RollNo, at.AttendanceDate , atst.Status
INTO #Results
FROM Students st
inner JOIN SectaionJunction sec
ON sec.ID = st.ClassSectionJunctionID
inner join Attendance at on at.ClassSectionJunctionId=sec.ID
inner join [dbo].[AttendaceStatus] atst
on...
May 20, 2016 at 5:55 am
Thanks A lot every one
I have found the solution
January 9, 2016 at 7:38 am
sqlcmd is shutting down after about 10 sec and not allowing me to write command
January 6, 2016 at 1:31 am
Viewing 4 posts - 1 through 4 (of 4 total)