Viewing 5 posts - 1 through 5 (of 5 total)
A site may not have a school or it may be a non-District school. The sitecode in the LocationTable must be compared to the sitecode in the Schools table to...
May 24, 2006 at 8:46 am
But I need the School table to tell me if the site at which a student is located is a valid school site or not. Remember, the location of the...
May 24, 2006 at 8:21 am
declare @StudentLocation (StudID int, SiteCode int, InDate datetime, OutDate datetime)
insert @StudentLocation
select 12345,1, '01/03/06','02/14/06'
union all select 12345,2,'02/15/06','03/14/06'
union all select 12345,5,'03/15/06', '05/21/06'
declare @DistrictSchool (SchoolID, SchoolName,SiteCode)
insert @DistrictSchool
select 111, 'School...
May 24, 2006 at 6:21 am
Say, for example, Student A was enrolled in a District school on Jan. 3. He attended that school until 2/18, at which time he was sent to Site B (a...
May 24, 2006 at 5:24 am
A student may be at a site and not in school. He may also be at a site and in school, but not a District school.
Haven't tried anything yet -...
May 24, 2006 at 4:59 am
Viewing 5 posts - 1 through 5 (of 5 total)